diff --git a/examples/big_upload/Makefile b/examples/big_upload/Makefile new file mode 100644 index 00000000..1f8720b7 --- /dev/null +++ b/examples/big_upload/Makefile @@ -0,0 +1,12 @@ +# Copyright (c) 2014 Cesanta Software +# All rights reserved + +PROG = big_upload +CFLAGS = -W -Wall -I../.. -g -O0 $(CFLAGS_EXTRA) +SOURCES = $(PROG).c ../../mongoose.c + +$(PROG): $(SOURCES) + $(CC) -o $(PROG) $(SOURCES) $(CFLAGS) + +clean: + rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib diff --git a/examples/big_upload.c b/examples/big_upload/big_upload.c similarity index 100% rename from examples/big_upload.c rename to examples/big_upload/big_upload.c