]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/toolbar/makefile.unx
Added dialup to filelist.txt and wxUniv.dsp
[wxWidgets.git] / samples / toolbar / makefile.unx
index 91d51a0bd1502a2eef796219ec3fd2d80963b868..31b97789d036e79b3887d5703c8603bea6cc58e7 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for toolbar example (Unix)
 # Created: 2000-03-14
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = toolbar
 
@@ -12,12 +12,12 @@ OBJECTS = $(PROGRAM).o
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
-       $(CC) -c `wx-config --cflags` -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)