]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dragimag/makefile.unx
documented GetIcon(s), extended SetIcons() doc
[wxWidgets.git] / samples / dragimag / makefile.unx
index 4abfc997167c79d3022117e144555e4d030b9e50..ad7cf511b2584ab9856c141fb32eb3917cef5949 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for dragimag example (Unix)
 # Created: 2000-03-15
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = dragimag
 
@@ -12,12 +12,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)