mirror of
https://github.com/DiUS/spiffsimg.git
synced 2025-05-08 20:40:34 +08:00
9 lines
196 B
Makefile
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 $@
|