1
0
mirror of https://github.com/DiUS/spiffsimg.git synced 2025-10-14 02:43:04 +08:00
Files
spiffsimg/Makefile
Johny Mattsson 96a8b2f5d8 Work in progress.
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 $@