X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8fef0a6eaea2cf6e4cbd3a833f07f253ef2ab403..b28b097d5955c5565eafb8c590347d22306aaeb3:/samples/tab/makefile.unx diff --git a/samples/tab/makefile.unx b/samples/tab/makefile.unx index c496a336b3..99cc875ad2 100644 --- a/samples/tab/makefile.unx +++ b/samples/tab/makefile.unx @@ -1,7 +1,7 @@ # Purpose: makefile for tab example (Unix) # Created: 2000-03-15 -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = tab @@ -12,12 +12,12 @@ OBJECTS = $(PROGRAM).o .SUFFIXES: .o .cpp .cpp.o : - $(CC) -c `wx-config --cflags` -o $@ $< + $(CXX) -c `wx-config --cxxflags` -o $@ $< all: $(PROGRAM) $(PROGRAM): $(OBJECTS) - $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` + $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` clean: rm -f *.o $(PROGRAM)