4 # This makefile requires a Unix version of wxWindows
 
   5 # to be installed on your system. This is most often
 
   6 # done typing "make install" when using the complete
 
   7 # sources of wxWindows or by installing the two
 
   8 # RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
 
  13 OBJECTS = $(PROGRAM).o
 
  15 EXTRAINC=-I../../src -I/usr/include/python2.2
 
  16 EXTRALIB=-L/usr/lib/python2.2/config -lpython2.2
 
  17 CXX = $(shell wx-config --cxx)
 
  23         $(CXX) -c `wx-config --cxxflags` $(EXTRAINC) -o $@ $<
 
  27 $(PROGRAM):     $(OBJECTS)
 
  28         $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` $(EXTRALIB)