]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/treectrl/makefile.unx
ugh. Nesting the (per class) plugin sentries can require them to
[wxWidgets.git] / samples / treectrl / makefile.unx
index 71b7088089368da371704c9f3709a46190df6d23..cabc284bef40e87f5d2069226ebb80d8fbc06f83 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for treectrl example (Unix)
 # Created: 2000-03-15
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = treectrl
 
@@ -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)