X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..922ba68045d84789ab1dfceb4d1aa1b6e2c5e810:/samples/controls/makefile.unx?ds=inline diff --git a/samples/controls/makefile.unx b/samples/controls/makefile.unx index 6ca7bd454f..6519d521e3 100644 --- a/samples/controls/makefile.unx +++ b/samples/controls/makefile.unx @@ -15,7 +15,7 @@ PROGRAM = controls -CC = gcc +CXX = $(shell wx-config --cxx) OBJECTS = $(PROGRAM).o @@ -24,12 +24,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)