1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-02-07 00:17:13 +00:00
Files
mist-devel.mist-firmware/Makefile.fattest
2021-02-19 18:17:07 +01:00

18 lines
217 B
Makefile

PRJ = fattest
SRC = fat_test.c fat.c
OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
CFLAGS = -Wno-attributes
CPPFLAGS = -DFAT_TEST
# Our target.
all: $(PRJ)
$(PRJ): $(OBJ)
$(CC) -o $@ $(OBJ)
clean:
rm -f $(OBJ) $(PRJ)