From e5d21225bee41483c9c629cbf6a8927893af69fc Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Fri, 10 Oct 2014 09:39:12 +0100 Subject: [PATCH] moved big_upload to separate dir --- examples/big_upload/Makefile | 12 ++++++++++++ examples/{ => big_upload}/big_upload.c | 0 2 files changed, 12 insertions(+) create mode 100644 examples/big_upload/Makefile rename examples/{ => big_upload}/big_upload.c (100%) 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