]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/fractal/makefile.unx
Avoid incompatible operand types
[wxWidgets.git] / demos / fractal / makefile.unx
index e23e9c3d27aa51d845bb0b87915964ef34b8b64e..3101343e74526f30072a9598dfca0b234f803cd0 100644 (file)
@@ -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 --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)