]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/joytest/makefile.unx
updated with latest file changes and added dynamic library (dylib) targets
[wxWidgets.git] / samples / joytest / makefile.unx
index ba937e13dfcd2b58dbcfe40796c02530f830a285..23bdc6486ee0138f968833b8614c3332987d5646 100644 (file)
@@ -1,7 +1,7 @@
 # Purpose: makefile for joytest example (Unix)
 # Created: 2000-03-14
 
-CC = gcc
+CXX = $(shell wx-config --cxx)
 
 PROGRAM = joytest
 
@@ -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)