From 63fcea01595da35fa2ef60512702019a605def16 Mon Sep 17 00:00:00 2001
From: Sergey Lyubka <valenok@gmail.com>
Date: Fri, 10 Oct 2014 09:40:07 +0100
Subject: [PATCH] moved form_submit to separate dir

---
 examples/form_submit/Makefile                  | 12 ++++++++++++
 examples/{form.c => form_submit/form_submit.c} |  0
 2 files changed, 12 insertions(+)
 create mode 100644 examples/form_submit/Makefile
 rename examples/{form.c => form_submit/form_submit.c} (100%)

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