]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/newgrid/makefile.unx
Replaced Blit with DrawBitmap in wxPoem to make it run with wxX11
[wxWidgets.git] / samples / newgrid / makefile.unx
index dd169f408a459a8951ecdca0524e33b418189f63..d91593e0df5bfc0d4967a88ce08897a1ae7a3657 100644 (file)
@@ -13,7 +13,7 @@
 # under Linux.
 #
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = griddemo
 
@@ -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)