home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / ResEdit / ResEdit 2.1b5 / Examples / PExamples / MakeLDEF < prev    next >
Encoding:
Text File  |  1990-10-23  |  572 b   |  30 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make instructions for the ResEdit ICON LDEF.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1990
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds:
  7. #        The ICON Resource LDEF
  8. #
  9.  
  10. OutFile = {buildToName}
  11. obj = :obj:
  12. source = :Source:
  13. ResEditLibraries = ::Libraries:
  14.  
  15. LDEFLibs =     {obj}LDEF.a.o ∂
  16.                         {obj}ResDisp.a.o ∂
  17.                         "{Libraries}"Interface.o
  18.  
  19. # Link for ICON LDEF
  20. "{OutFile}"        ƒƒ    {obj}ICON.LDEF.p.o {LDEFLibs}
  21.     Link    {LDEFLibs} ∂
  22.             {obj}ICON.LDEF.p.o ∂
  23.             -ra =resPurgeable -sn Main=ICON -rt LDEF=128 ∂
  24.             -o "{OutFile}"
  25.  
  26. {obj}    ƒ    {source} {ResEditLibraries}
  27.  
  28.  
  29.  
  30.