X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4fda16bb0d3b9b5fae6d289e4c3a93701fa4839..4aaef122cbbd5bbe0e70b824e320458e2329dd13:/samples/dnd/makefile.unx

diff --git a/samples/dnd/makefile.unx b/samples/dnd/makefile.unx
index 00993a6cff..fbb90b2456 100644
--- a/samples/dnd/makefile.unx
+++ b/samples/dnd/makefile.unx
@@ -13,16 +13,23 @@
 # under Linux.
 #
 
-CC = gcc
-
 PROGRAM = dnd
 
-$(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)