X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..e944f70a6d8f0a56d00d575940f4fe94f49ef727:/samples/exec/makefile.unx?ds=sidebyside diff --git a/samples/exec/makefile.unx b/samples/exec/makefile.unx index fdbb3cbc51..01dc96c11f 100644 --- a/samples/exec/makefile.unx +++ b/samples/exec/makefile.unx @@ -1,7 +1,7 @@ # Purpose: makefile for exec example (Unix) # Created: 2000-03-14 -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = exec @@ -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)