]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/exec/makefile.unx
Don't use bitmap by default.
[wxWidgets.git] / samples / exec / makefile.unx
index fdbb3cbc511899e2956314d80163bb7f7efe9838..01dc96c11fe6a60105806741e407ca9e117560cf 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for exec example (Unix)
 # Created: 2000-03-14
 
 # Purpose: makefile for exec example (Unix)
 # Created: 2000-03-14
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = exec
 
 
 PROGRAM = exec
 
@@ -12,12 +12,12 @@ OBJECTS = $(PROGRAM).o
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
 .SUFFIXES:     .o .cpp
 
 .cpp.o :
-       $(CC) -c `wx-config --cxxflags` -o $@ $<
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
 all:    $(PROGRAM)
 
 $(PROGRAM):    $(OBJECTS)
 
 all:    $(PROGRAM)
 
 $(PROGRAM):    $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
 clean:
        rm -f *.o $(PROGRAM)
 
 clean:
        rm -f *.o $(PROGRAM)