X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..084ad0c2424aa998a640c151f8fa762435364449:/samples/dnd/makefile.unx?ds=sidebyside diff --git a/samples/dnd/makefile.unx b/samples/dnd/makefile.unx index 3624701187..fbb90b2456 100644 --- a/samples/dnd/makefile.unx +++ b/samples/dnd/makefile.unx @@ -15,7 +15,7 @@ PROGRAM = dnd -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)