home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Languages / python / PyObjC-0.47-MIHS / pyobjc-0.47-src / Modules / Setup.PyObjC.in < prev   
Encoding:
Text File  |  1996-11-14  |  1.3 KB  |  51 lines

  1. # Objective-C Interface Module
  2. ###############################
  3.  
  4. # Compile with NeXT cc and ObjC runtime. If you do not want the entire
  5. # ApplicationKit to be linked in, comment out ``-u libNeXT_s -lNeXT_s''.
  6. OCC=cc -Wall -ObjC -g
  7. ObjC    Modules/ObjC.m \
  8.     Modules/ObjCMethod.m \
  9.     Modules/ObjCObject.m \
  10.     Modules/ObjCPointer.m \
  11.     Modules/ObjCRuntime.m \
  12.     Modules/ObjCStreams.m \
  13.     Modules/objc_support.m \
  14.     Modules/OC_Pasteboard.m \
  15.     Modules/OC_PythonBundle.m \
  16.     Modules/OC_PythonInt.m \
  17.     Modules/OC_PythonObject.m \
  18.     Modules/OC_PythonString.m \
  19.     Modules/OC_Stream.m  -u libNeXT_s -lNeXT_s
  20.  
  21. # Compile with GNU gcc, ObjC runtime and GNUstep Base.
  22. # If you aren't on NeXTSTEP, comment out ``-fgnu-runtime''.
  23. #OCC=$(CC) -DGNU_RUNTIME -fgnu-runtime 
  24. #ObjC    Modules/ObjC.m \
  25. #    Modules/ObjCMethod.m \
  26. #    Modules/ObjCObject.m \
  27. #    Modules/ObjCPointer.m \
  28. #    Modules/ObjCRuntime.m \
  29. #    Modules/ObjCStreams.m \
  30. #    Modules/objc_support.m \
  31. #    Modules/OC_Pasteboard.m \
  32. #    Modules/OC_PythonBundle.m \
  33. #    Modules/OC_PythonInt.m \
  34. #    Modules/OC_PythonObject.m \
  35. #    Modules/OC_PythonString.m \
  36. #    Modules/OC_Stream.m -lgnustep-base -lobjc
  37.  
  38. ##
  39. ## PyServicesDelegate
  40. ##
  41.  
  42. ## BOGUSE-- also includes libs for readline! [due to a bug in
  43. ## the configuration stuff]
  44. PyServicesDelegate Modules/PyServicesDelegate.m -lreadline -ltermcap
  45.  
  46. #
  47. # Local Variables:
  48. # change-log-default-name:"../ChangeLog.PyObjC"
  49. # End:
  50. #
  51.