]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/propsize/makefile.unx
added tests for changing display resolution and going full screen
[wxWidgets.git] / samples / propsize / makefile.unx
index df619418fa904f2a19c02650e9f287ada5a961e3..0b5b4a415b77a47076c7480e173be6845cbf3def 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for propsize example (Unix)
 # Created: 2000-03-14
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = propsize
 
@@ -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)