]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/makefile.unx
Updated versions to 2.3.3
[wxWidgets.git] / demos / life / makefile.unx
index 3a8141f1eb7b713326a274280e37a108d744f6ba..a39e968d176dbd94db0fdf99359e4f7b7ae98cc0 100644 (file)
@@ -13,7 +13,7 @@
 # under Linux.
 #
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = life
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).o dialogs.o game.o reader.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)