X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e909371890f73eb9b3ca33d15960d9305ca1b4c2..0d2c9713ecc2a9b0d98d9710940018002aaaaed2:/samples/controls/makefile.unx diff --git a/samples/controls/makefile.unx b/samples/controls/makefile.unx index ebf2d91575..6519d521e3 100644 --- a/samples/controls/makefile.unx +++ b/samples/controls/makefile.unx @@ -15,7 +15,7 @@ PROGRAM = controls -CC = gcc +CXX = $(shell wx-config --cxx) OBJECTS = $(PROGRAM).o @@ -24,12 +24,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)