X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/367e57ec9b921d7523c1ac3e9e3477850aaf3c66..ba637f22e61113ab2296936f9a101e929cc05711:/samples/exec/makefile.unx diff --git a/samples/exec/makefile.unx b/samples/exec/makefile.unx index 55d59a74d0..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 --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)