]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/db/makefile.unx
fixes, completions for CW 8
[wxWidgets.git] / samples / db / makefile.unx
index 9e69037b3d4e7f49fa052e149031f915112954c4..816246660198bcacda1c6820ff2eb62ec8e57a8f 100644 (file)
 
 PROGRAM = dbtest
 
 
 PROGRAM = dbtest
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 
-OBJECTS = $(PROGRAM).o
+OBJECTS = $(PROGRAM).o listdb.o
 
 # implementation
 
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
 
 # implementation
 
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
-       $(CC) -c `wx-config --cflags` -o $@ $<
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
 all:    $(PROGRAM)
 
 $(PROGRAM):    $(OBJECTS)
 
 all:    $(PROGRAM)
 
 $(PROGRAM):    $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
 clean: 
        rm -f *.o $(PROGRAM)
 
 clean: 
        rm -f *.o $(PROGRAM)