home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / MacApp / MacApp CD Release / MacApp 2.0.1 (Many Libraries) / Examples / Calc / Calc.MAmake next >
Encoding:
Text File  |  1990-10-25  |  2.4 KB  |  70 lines  |  [TEXT/MPS ]

  1. #********************************************************************************
  2. #                                                                                *
  3. #    File:            Calc.MAmake                                                     *
  4. #                                                                                *
  5. #    Description:    Makefile for Calc.                                            *
  6. #                                                                                *
  7. #                                                                                *
  8. #    Copyright © 1985 - 1990 by Apple Computer, Inc.  All rights reserved.       *
  9. #********************************************************************************
  10.  
  11. #---------------------------------------------------------------------------------------------------
  12. #    List here the Application's Name
  13. AppName = Calc
  14.  
  15.  
  16. #---------------------------------------------------------------------------------------------------
  17. #    List here the MacApp building blocks that your application uses
  18. #    if you want to be dependent on less than the full set.
  19. BuildingBlockIntf =  ∂
  20.     "{MAPInterfaces}UPrinting.p" ∂
  21.     "{MAPInterfaces}UTEView.p" ∂
  22.     "{MAPInterfaces}UGridView.p"
  23.  
  24.  
  25. #---------------------------------------------------------------------------------------------------
  26. #    List any additional interfaces that your application is dependent on
  27. OtherInterfaces =  ∂
  28.     "{SrcApp}CalcUtilities.p" ∂
  29.     "{SrcApp}UGrabberTracker.p" ∂
  30.     "{SrcApp}USynchScroller.p"
  31.  
  32.  
  33. #---------------------------------------------------------------------------------------------------
  34. #    Name any other object files to link in
  35. OtherLinkFiles = ∂
  36.     "{ObjApp}CalcUtilities.p.o" ∂
  37.     "{ObjApp}UGrabberTracker.p.o" ∂
  38.     "{ObjApp}USynchScroller.p.o"
  39.  
  40.  
  41. #---------------------------------------------------------------------------------------------------
  42. #    Express any additional dependencies for separate compilations.
  43. #    Include dependencies for the MacApp and Building block interfaces
  44. #    if you are dependent on them
  45. "{ObjApp}CalcUtilities.p.o"    ƒ ∂
  46.                             "{SrcApp}CalcUtilities.inc1.p" ∂
  47.                             {MacAppIntf} ∂
  48.                             {BuildingBlocksIntf}
  49.  
  50. "{ObjApp}UGrabberTracker.p.o"    ƒ ∂
  51.                             "{SrcApp}UGrabberTracker.inc1.p" ∂
  52.                             {MacAppIntf} ∂
  53.                             {BuildingBlocksIntf}
  54.  
  55. "{ObjApp}USynchScroller.p.o"    ƒ ∂
  56.                             "{SrcApp}USynchScroller.inc1.p" ∂
  57.                             {MacAppIntf} ∂
  58.                             {BuildingBlocksIntf}
  59.  
  60.  
  61. #---------------------------------------------------------------------------------------------------
  62. #    List resource files that the Rez file includes if you want to include
  63. #    more or less than the standard set
  64. OtherRsrcFiles = ∂
  65.     "{MAObj}Printing.rsrc" ∂
  66.     "{ObjApp}CalcUtilities.rsrc" ∂
  67.     "{ObjApp}GrabberTracker.rsrc"
  68.  
  69.  
  70.