changed CXX to CPP in CPPFLAGS (previous error)

master
Rachel Lambda Samuelsson 2021-01-30 18:57:54 +01:00
parent 7a0b296301
commit 33d532d670
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
include config.mk
all: mpdart
mpdart: mpdart.c
$(CC) $(CONFIG) $(CFLAGS) $(CXXFLAGS) -o $@ mpdart.c
$(CC) $(CONFIG) $(CFLAGS) $(CPPFLAGS) -o $@ mpdart.c
debug: mpdart_debug
mpdart_debug: mpdart.c
$(CC) $(CONFIG) -Og -g -DDEBUG -o $@ mpdart.c