mongoose/examples/big_upload/Makefile

13 lines
293 B
Makefile
Raw Normal View History

2014-10-10 16:39:12 +08:00
# Copyright (c) 2014 Cesanta Software
# All rights reserved
PROG = big_upload
2014-10-14 18:05:12 +08:00
CFLAGS = -W -Wall -pthread -I../.. -g -O0 $(CFLAGS_EXTRA)
2014-10-10 16:39:12 +08:00
SOURCES = $(PROG).c ../../mongoose.c
$(PROG): $(SOURCES)
$(CC) -o $(PROG) $(SOURCES) $(CFLAGS)
clean:
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib