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.cuetest
Gyorgy Szombathelyi af39aae05e PCE-CD support
2021-05-22 02:33:58 +02:00

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)