Big-arse structure change: readying esphttpd for a split into a library and an usage example

This commit is contained in:
Jeroen Domburg
2015-06-09 17:47:48 +08:00
parent b458df915e
commit ccc179f533
34 changed files with 207 additions and 77 deletions
+13
View File
@@ -0,0 +1,13 @@
CFLAGS=-I../../lib/heatshrink -I.. -std=gnu99 -DESPFS_HEATSHRINK
espfstest: main.o espfs.o heatshrink_decoder.o
$(CC) -o $@ $^
espfs.o: ../espfs.c
$(CC) $(CFLAGS) -c $^ -o $@
heatshrink_decoder.o: ../heatshrink_decoder.c
$(CC) $(CFLAGS) -c $^ -o $@
clean:
rm -f *.o espfstest