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