X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0a3e82894aeeddd8f3c5e50ffce297899b563fd1..a6f762a646e1288dcc4be6fc9ccc22d9a88c2a0f:/samples/resource/makefile.unx?ds=sidebyside diff --git a/samples/resource/makefile.unx b/samples/resource/makefile.unx index 5e3defcff5..1792f2e851 100644 --- a/samples/resource/makefile.unx +++ b/samples/resource/makefile.unx @@ -13,7 +13,7 @@ # under Linux. # -CC = gcc +CXX = $(shell wx-config --cxx) PROGRAM = resource @@ -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)