X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6656ccb149683950e871b5022d2b88b03712165..69ce9cea39ee9f6edf588101dd78948d2d9f4ba2:/demos/bombs/makefile.unx?ds=inline

diff --git a/demos/bombs/makefile.unx b/demos/bombs/makefile.unx
index 20a3228e72..c6383ef8b7 100644
--- a/demos/bombs/makefile.unx
+++ b/demos/bombs/makefile.unx
@@ -13,7 +13,7 @@
 # under Linux.
 #
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = bombs
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o game.o bombs1.o
 .SUFFIXES:	.o .cpp
 
 .cpp.o :
-	$(CC) -c `wx-config --cxxflags` -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)