mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-11 23:43:04 +00:00
18 lines
238 B
Makefile
18 lines
238 B
Makefile
PRJ = cuetest
|
|
SRC = cue_test.c cue_parser.c
|
|
|
|
OBJ = $(SRC:.c=.o)
|
|
DEP = $(SRC:.c=.d)
|
|
|
|
CFLAGS = -Wno-attributes -g -I.
|
|
CPPFLAGS = -DCUE_PARSER_TEST
|
|
|
|
# Our target.
|
|
all: $(PRJ)
|
|
|
|
$(PRJ): $(OBJ)
|
|
$(CC) -o $@ $(OBJ)
|
|
|
|
clean:
|
|
rm -f $(OBJ) $(PRJ)
|