1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-05-05 15:54:34 +00:00

A simple ini_parser tester

This commit is contained in:
Gyorgy Szombathelyi
2020-02-06 12:53:38 +01:00
parent cec6588121
commit c7d130bbf8
3 changed files with 43 additions and 0 deletions

16
Makefile.initest Normal file
View File

@@ -0,0 +1,16 @@
PRJ = initest
SRC = ini_test.c mist_cfg.c ini_parser.c
OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
CPPFLAGS = -DINI_PARSER_TEST
# Our target.
all: $(PRJ)
$(PRJ): $(OBJ)
$(CC) -o $@ $(OBJ)
clean:
rm -f $(OBJ) $(PRJ)