1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-11 23:43:04 +00:00
mist-devel.mist-firmware/Makefile.initest
Gyorgy Szombathelyi ad35e4f5cf ini_parser: make it independent again
- factor out data_io and user_io calls from the parser core
2020-02-06 17:22:17 +01:00

18 lines
242 B
Makefile

PRJ = initest
SRC = ini_test.c mist_cfg.c ini_parser.c
OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
CFLAGS = -Wno-attributes
CPPFLAGS = -DINI_PARSER_TEST
# Our target.
all: $(PRJ)
$(PRJ): $(OBJ)
$(CC) -o $@ $(OBJ)
clean:
rm -f $(OBJ) $(PRJ)