12 lines
414 B
Makefile
12 lines
414 B
Makefile
|
SRCS=\
|
||
|
main.c \
|
||
|
../../app/spiffs/spiffs_cache.c ../../app/spiffs/spiffs_check.c ../../app/spiffs/spiffs_gc.c ../../app/spiffs/spiffs_hydrogen.c ../../app/spiffs/spiffs_nucleus.c
|
||
|
|
||
|
CFLAGS=-g -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -I. -I../../app/spiffs -DNODEMCU_SPIFFS_NO_INCLUDE --include spiffs_typedefs.h
|
||
|
|
||
|
spiffsimg: $(SRCS)
|
||
|
$(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -f spiffsimg
|