X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..506e9b7ed2bee097fd3674061f6962e54bdea7bf:/demos/fractal/makefile.unx diff --git a/demos/fractal/makefile.unx b/demos/fractal/makefile.unx index 68b7ce389d..3101343e74 100644 --- a/demos/fractal/makefile.unx +++ b/demos/fractal/makefile.unx @@ -13,7 +13,7 @@ # under Linux. # -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = fractal @@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o .SUFFIXES: .o .cpp .cpp.o : - $(CC) -c `wx-config --cxxflags` -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)