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:
16
Makefile.initest
Normal file
16
Makefile.initest
Normal 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)
|
||||
Reference in New Issue
Block a user