X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e909371890f73eb9b3ca33d15960d9305ca1b4c2..c6b81cebf15668472f2ff698687c9aca4f548b02:/samples/dnd/makefile.unx

diff --git a/samples/dnd/makefile.unx b/samples/dnd/makefile.unx
index 0337fb4179..fbb90b2456 100644
--- a/samples/dnd/makefile.unx
+++ b/samples/dnd/makefile.unx
@@ -15,7 +15,7 @@
 
 PROGRAM = dnd
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 OBJECTS = $(PROGRAM).o
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o
 .SUFFIXES:	.o .cpp
 
 .cpp.o :
-	$(CC) -c `wx-config --cflags` -o $@ $<
+	$(CXX) -c `wx-config --cxxflags` -o $@ $<
 
 all:    $(PROGRAM)
 
 $(PROGRAM):	$(OBJECTS)
-	$(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+	$(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
 clean: 
 	rm -f *.o $(PROGRAM)