diff --git a/examples/form_submit/Makefile b/examples/form_submit/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..1d7c0ff77c7e60124920c465e7aa479384a44626
--- /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