]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/db/makefile.unx
fixes, completions for CW 8
[wxWidgets.git] / samples / db / makefile.unx
index a896e2965c87d2dcdf2db2cd2fdd767aa6f7420d..816246660198bcacda1c6820ff2eb62ec8e57a8f 100644 (file)
@@ -15,7 +15,7 @@
 
 PROGRAM = dbtest
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 OBJECTS = $(PROGRAM).o listdb.o
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o listdb.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)