X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/44762a6a87805bc36b653225828657ec98b66757..5270a2f939501d8bb83451ddc15408ee929346e2:/samples/newgrid/makefile.unx diff --git a/samples/newgrid/makefile.unx b/samples/newgrid/makefile.unx index d689275e6f..d91593e0df 100644 --- a/samples/newgrid/makefile.unx +++ b/samples/newgrid/makefile.unx @@ -13,7 +13,7 @@ # under Linux. # -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = griddemo @@ -24,12 +24,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)