X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4fda16bb0d3b9b5fae6d289e4c3a93701fa4839..8168de4c791743534263e43bde4d312e88e01d65:/samples/controls/makefile.unx?ds=sidebyside

diff --git a/samples/controls/makefile.unx b/samples/controls/makefile.unx
index 28e0924dd8..ebf2d91575 100644
--- a/samples/controls/makefile.unx
+++ b/samples/controls/makefile.unx
@@ -13,16 +13,23 @@
 # under Linux.
 #
 
+PROGRAM = controls
+
 CC = gcc
 
-PROGRAM = controls
+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)