]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/poem/makefile.unx
Rebaked using post-0.2.7 svn version of bakefile.
[wxWidgets.git] / demos / poem / makefile.unx
index 808a2bebc840656f43f03c272c7eff9a6ee8f83e..fe1fdce3c8a8393b7729c8d06dd4e0b761a71182 100644 (file)
@@ -13,7 +13,7 @@
 # under Linux.
 #
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = wxpoem
 
@@ -24,12 +24,12 @@ OBJECTS = $(PROGRAM).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)