From 33d532d670ea89621abd1c1f8a6a058b2091b1ef Mon Sep 17 00:00:00 2001 From: depsterr Date: Sat, 30 Jan 2021 18:57:54 +0100 Subject: [PATCH] changed CXX to CPP in CPPFLAGS (previous error) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 736dd0a..2204be9 100644 --- a/Makefile +++ b/Makefile @@ -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