]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/richedit/makefile.unx
made wx[Array]TreeItemId[s] more backwards compatible
[wxWidgets.git] / samples / richedit / makefile.unx
index bd016fe74abd85a02fcec45af7a2a0c50b7b886c..604ae36065caf9590a4b3a7e2d8587ba95dee16c 100644 (file)
@@ -2,7 +2,7 @@
 # Created: 2000-03-14
 # hand hacked from template file by Ron <ron@debian.org>
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = wxLayout
 
@@ -13,10 +13,10 @@ OBJECTS = $(PROGRAM).o kbList.o wxllist.o wxlparser.o wxlwindow.o
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
-       $(CC) -c `wx-config --cflags` -o $@ $<
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
 $(PROGRAM): $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
        
 clean:
        rm -f *.o $(PROGRAM)