X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/13f5935c36a2b387591cc4b788a8cc2d07363c56..d15040492413b54a530b5a291b26750f3d265d23:/samples/wizard/makefile.unx diff --git a/samples/wizard/makefile.unx b/samples/wizard/makefile.unx index f0e1abaec9..ace02cfd3a 100644 --- a/samples/wizard/makefile.unx +++ b/samples/wizard/makefile.unx @@ -1,7 +1,7 @@ # Purpose: makefile for wizard example (Unix) # Created: 2000-03-15 -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = wizard @@ -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)