diff --git a/examples/mongoose_server/Makefile b/examples/mongoose_server/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..532d2ddb987984c8c66b68bd7c5775445d344216 --- /dev/null +++ b/examples/mongoose_server/Makefile @@ -0,0 +1,12 @@ +# Copyright (c) 2014 Cesanta Software +# All rights reserved + +PROG = mongoose_server +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/server.c b/examples/mongoose_server/mongoose_server.c similarity index 100% rename from examples/server.c rename to examples/mongoose_server/mongoose_server.c