X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f30dcba95deab69e102f4fccb30168539f4cbdfd..740af654d1d20aaccad331e0eb73d113b5c0b02f:/samples/grid/makefile.unx diff --git a/samples/grid/makefile.unx b/samples/grid/makefile.unx index a80a6ec93e..b0bb5f0ebe 100644 --- a/samples/grid/makefile.unx +++ b/samples/grid/makefile.unx @@ -1,7 +1,7 @@ # Purpose: makefile for grid example (Unix) # Created: 2000-03-15 -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = grid @@ -12,12 +12,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)