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