]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/gizmos/multicell/makefile.unx
regenerated makefiles
[wxWidgets.git] / contrib / samples / gizmos / multicell / makefile.unx
index ae85345f2f63003f1c6636b4db2b673a05097e56..27d3b2952c6b102941b458f877c391cd705101d7 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for multicell example (Unix)
 # Created 2000-07-28
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = mtest
 
@@ -13,12 +13,12 @@ EXTRAINC=-I../include
 .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)