X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11b620511dc4613a66ee1ca2aeab788d43245fbd..639848874998378be6823c5243641eb643a0b0bf:/samples/menu/makefile.unx diff --git a/samples/menu/makefile.unx b/samples/menu/makefile.unx index c6811a77e1..17d57205aa 100644 --- a/samples/menu/makefile.unx +++ b/samples/menu/makefile.unx @@ -13,7 +13,7 @@ # under Linux. # -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = menu @@ -24,12 +24,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)