X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4fda16bb0d3b9b5fae6d289e4c3a93701fa4839..0e300ddd7d91d46e3d9fcbbefe916b0fda6fcbbc:/samples/checklst/makefile.unx diff --git a/samples/checklst/makefile.unx b/samples/checklst/makefile.unx index 9b7e114a7f..458356356e 100644 --- a/samples/checklst/makefile.unx +++ b/samples/checklst/makefile.unx @@ -13,16 +13,23 @@ # under Linux. # +PROGRAM = checklst + CC = gcc -PROGRAM = checklst +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)