X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4fda16bb0d3b9b5fae6d289e4c3a93701fa4839..4fa87bd948a00e9cc2a31a577663c344632f521c:/samples/controls/makefile.unx diff --git a/samples/controls/makefile.unx b/samples/controls/makefile.unx index 28e0924dd8..6519d521e3 100644 --- a/samples/controls/makefile.unx +++ b/samples/controls/makefile.unx @@ -13,16 +13,23 @@ # under Linux. # -CC = gcc - PROGRAM = controls -$(PROGRAM): $(PROGRAM).o - $(CC) -o $(PROGRAM) \ - $(PROGRAM).o `wx-config --libs` +CXX = $(shell wx-config --cxx) + +OBJECTS = $(PROGRAM).o + +# implementation + +.SUFFIXES: .o .cpp + +.cpp.o : + $(CXX) -c `wx-config --cxxflags` -o $@ $< + +all: $(PROGRAM) -$(PROGRAM).o: $(PROGRAM).cpp - $(CC) `wx-config --cflags` -c $(PROGRAM).cpp +$(PROGRAM): $(OBJECTS) + $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` clean: rm -f *.o $(PROGRAM)