X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4fda16bb0d3b9b5fae6d289e4c3a93701fa4839..8366ae934aab9f835747b0c2e456231e8795fe78:/samples/config/makefile.unx?ds=sidebyside diff --git a/samples/config/makefile.unx b/samples/config/makefile.unx index fd8e0e5b1e..8fae357103 100644 --- a/samples/config/makefile.unx +++ b/samples/config/makefile.unx @@ -13,16 +13,23 @@ # under Linux. # +PROGRAM = config + CC = gcc -PROGRAM = config +OBJECTS = $(PROGRAM).o + +# implementation + +.SUFFIXES: .o .cpp + +.cpp.o : + $(CC) -c `wx-config --cflags` -o $@ $< -$(PROGRAM): $(PROGRAM).o - $(CC) -o $(PROGRAM) \ - $(PROGRAM).o `wx-config --libs` +all: $(PROGRAM) -$(PROGRAM).o: $(PROGRAM).cpp - $(CC) `wx-config --cflags` -c $(PROGRAM).cpp +$(PROGRAM): $(OBJECTS) + $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` clean: rm -f *.o $(PROGRAM)