X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/099287b916cd889bcfe8e837ef9a675fa24b7db6..cd560c961a09a8ae80b9c32856e195ed784cc547:/samples/db/makefile.unx diff --git a/samples/db/makefile.unx b/samples/db/makefile.unx index 5bfccd1f91..8162466601 100644 --- a/samples/db/makefile.unx +++ b/samples/db/makefile.unx @@ -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 --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)