1
0
mirror of https://github.com/DiUS/spiffsimg.git synced 2025-05-08 20:40:34 +08:00
spiffsimg/Makefile
2015-07-15 16:31:24 +10:00

9 lines
196 B
Makefile

SRCS=\
main.c \
$(wildcard spiffs/src/*.c) \
CFLAGS=-Wall -Wextra -Wno-unused-parameter -Wno-unused-function -std=c99 -I. -Ispiffs/src
spiffsimg: $(SRCS)
$(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@