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