From ebd4e7f7ba2f867fd5e25bb40e656792b1147aec Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 19 Apr 2015 18:38:23 +0200 Subject: Makefile: change CC to CXX --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 78b065f..3641f94 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CC=g++ +CXX=g++ SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c faad_decoder.cpp wavfile.c etiinput.cpp HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h wavfile.h etiinput.h @@ -7,10 +7,10 @@ HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h wavfile.h etiinput.h all: etisnoop etisnoop: $(SOURCES) $(HEADERS) - $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop + $(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop etisnoop-static: libfaad $(SOURCES) $(HEADERS) - $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop + $(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop libfaad: make -C ./faad2-2.7 -- cgit v1.2.3