X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..ac03a19f937e4af5cf5cb14c85223f5c842ec307:/samples/docview/makefile.unx diff --git a/samples/docview/makefile.unx b/samples/docview/makefile.unx index 655b66b759..9af3b76a7e 100644 --- a/samples/docview/makefile.unx +++ b/samples/docview/makefile.unx @@ -13,7 +13,7 @@ # under Linux. # -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = docview @@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o view.o doc.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)