X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/367e57ec9b921d7523c1ac3e9e3477850aaf3c66..c822ad5a5e30a21ca3340af644bf79804cf7c777:/samples/validate/makefile.unx diff --git a/samples/validate/makefile.unx b/samples/validate/makefile.unx index ef20878024..ab717a2725 100644 --- a/samples/validate/makefile.unx +++ b/samples/validate/makefile.unx @@ -1,7 +1,7 @@ # Purpose: makefile for validate example (Unix) # Created: 2000-03-14 -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = validate @@ -12,12 +12,12 @@ OBJECTS = $(PROGRAM).o .SUFFIXES: .o .cpp .cpp.o : - $(CC) -c `wx-config --cflags` -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)