moved form_submit to separate dir

This commit is contained in:
Sergey Lyubka 2014-10-10 09:40:07 +01:00
parent e5d21225be
commit 63fcea0159
2 changed files with 12 additions and 0 deletions

View File

@ -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