]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/treectrl/makefile.unx
Scrolling improvements
[wxWidgets.git] / samples / treectrl / makefile.unx
index 5f38c63afaa3e23e5374038366646c415dd9bd2a..5c422e1c8fa2227684c19a5385b31a0a8edf6bde 100644 (file)
@@ -1,9 +1,9 @@
 # Purpose: makefile for treectrl example (Unix)
 # Created: 2000-03-15
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
-PROGRAM = treectrl
+PROGRAM = treetest
 
 OBJECTS = $(PROGRAM).o
 
@@ -12,12 +12,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)