]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/gizmos/splittree/makefile.unx
Defaults in wxWinCE documented.
[wxWidgets.git] / contrib / samples / gizmos / splittree / makefile.unx
index 25521115902183ecb85e16ce1cc3c17c1b880c62..ab2ced9e766a51ee9cf1c6917da2f765eabc3b7a 100644 (file)
@@ -13,7 +13,7 @@
 # under Linux.
 #
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = minimal
 
@@ -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)