home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / tech / protocol.hqx / ProtocolSources.pit / Protocol.make < prev    next >
Encoding:
Text File  |  1986-06-26  |  1.4 KB  |  55 lines

  1. AppName = Protocol
  2.  
  3. Creator = 'prot'
  4.  
  5. #    List the system libraries that your application needs to link with.  
  6. #    If you are not sure, list everything and the linker will tell you
  7. #    which ones it did not need
  8.  
  9. NeededSysLibs = ╢
  10.             "{Libraries}RunTime.o" ╢
  11.             "{Libraries}Interface.o" ╢
  12.             "{PLibraries}PasLib.o"
  13.  
  14. #    List here the MacApp building blocks that your application uses
  15.  
  16. BuildingBlockIntf = ╢
  17.     "{SrcMacApp}UPrinting.p" ╢
  18.     "{SrcMacApp}UTEView.p"
  19.  
  20. #    List here the same MacApp building blocks as object files (for linking)
  21.  
  22. BuildingBlockObjs = ╢
  23.     "{ObjMacApp}UPrinting.p.o" ╢
  24.     "{ObjMacApp}UTEView.p.o"
  25.  
  26. #    List any additional pascal interface files which your application uses
  27.  
  28. OtherInterfaces = UProtocolChart.p
  29.  
  30. #    By default MacApp.make links the above libraries, all of MacApp,
  31. #    and the files UAppName.p.o and MAppName.p.o
  32. #    List any additional files that your program links with:
  33.  
  34. OtherLinkFiles = UProtocolChart.p.o
  35.  
  36. #    Specify any -sn (segment alias) linker options that you want included
  37.  
  38. OtherSegMappings = 
  39.  
  40. #    List the dependencies of the additional files 
  41. #    (and special build rules, if any)
  42.  
  43. "UProtocolChart.p.o"    ─    "UProtocolChart.inc1.p" {BuildingBlockIntf} {MacAppIntf}
  44.  
  45. #    List Rez files other than AppName.r that need to Rez'ed with the application
  46.  
  47. OtherRezFiles = 
  48.  
  49. #    List resource files that the Rez file includes
  50.  
  51. OtherRsrcFiles = ╢
  52.                 "{RezMacApp}Printing.rsrc" ╢
  53.                 "{RezMacApp}Dialog.rsrc" ╢
  54.                 ProtocolExtras.rsrc
  55.