home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / code / p_fracap.sit / FracAppPalette.make < prev    next >
Text File  |  1988-08-17  |  2KB  |  77 lines

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MacApp Color QuickDraw Palette Fractal Sample Application
  5. #
  6. #    FracAppPalette
  7. #
  8. #    FracAppPalette.make    -    Make Source
  9. #
  10. #    Copyright ⌐ 1988 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                        8/88
  14. #
  15. #    Components:    MFracAppPalette.p        August 1, 1988
  16. #                UFracAppPalette.p        August 1, 1988
  17. #                UFracAppPalette.inc1.p    August 1, 1988
  18. #                FracAppPalette.r        August 1, 1988
  19. #                FracAppPalette.make        August 1, 1988
  20. #
  21. #Copyright ⌐ 1986 Apple Computer, Inc.  All rights reserved.
  22.  
  23. AppName = FracAppPalette
  24.  
  25. Creator = 'Arf '
  26.  
  27. #    List the system libraries that your application needs to link with.  
  28. #    If you are not sure, list everything and the linker will tell you
  29. #    which ones it did not need
  30.  
  31. NeededSysLibs = ╢
  32.             "{Libraries}RunTime.o" ╢
  33.             "{Libraries}Interface.o" ╢
  34.             "{PLibraries}PasLib.o"
  35.  
  36. #    List here the MacApp building blocks that your application uses
  37.  
  38. BuildingBlockIntf =  ╢
  39.                 "{SrcMacApp}UPrinting.p"
  40.  
  41. #    List the same MacApp building blocks as object files (for linking)
  42.  
  43. BuildingBlockObjs = ╢
  44.                 "{ObjMacApp}UPrinting.p.o"
  45.                 
  46. #    List any additional pascal interface files which your application uses
  47.  
  48. OtherInterfaces = 
  49.  
  50. #    By default MacApp.make links the above libraries, all of MacApp,
  51. #    and the files UAppName.p.o and MAppName.p.o
  52. #    List any additional files that your program links with:
  53.  
  54. OtherLinkFiles = 
  55.  
  56. #    Specify any -sn (segment alias) linker options that you want included.
  57.  
  58. OtherSegMappings =
  59.  
  60. #    List the dependencies of the additional files 
  61. #    (and special build rules, if any)
  62.  
  63. UFracAppPalette.p.o    ─    UFracAppPalette.p
  64.     echo Compiling UFracAppPalette.p (with -mc68881)
  65.     Pascal UFracAppPalette.p {Debugging} {PascalOptions} -mc68881 ╢
  66.                 -d qNeedsROM128K={NeedsROM128K} ╢
  67.                 -i "{SrcMacApp}" -k "{LoadMacApp}" -o {Targ}
  68.  
  69. #    List Rez files other than AppName.r that need to Rez'ed with the application
  70.  
  71. OtherRezFiles = 
  72.  
  73. #    List resource files that the Rez file includes
  74.  
  75. OtherRsrcFiles = ╢
  76.                 "{RezMacApp}Printing.rsrc"
  77.