Moved espfs files and tools together, fixed espfstest

This commit is contained in:
Jindra Dolezy
2015-04-11 00:35:54 +02:00
parent 99e72f5915
commit c3f3cbcf9c
21 changed files with 57 additions and 62 deletions
+13
View File
@@ -0,0 +1,13 @@
CFLAGS=-I../../lib/heatshrink -I.. -std=gnu99
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