mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-11 23:43:04 +00:00
18 lines
242 B
Makefile
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)
|