home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / menustuf.sit / Makefile.txt < prev    next >
Makefile  |  1990-04-16  |  845b  |  32 lines

  1. #
  2. # Combined Makefile for MPW menu-manipulation tools. Use the
  3. # command
  4. #
  5. #        Make `Make -r`
  6. #
  7. # to generate all the necessary build commands at once.
  8. #
  9.  
  10. Common = MenuStuffCommon.p.o
  11. LibsNeeded = ╢
  12.     {Common} ╢
  13.     "{TMLPLibraries}"TMLPasLib.o ╢
  14.     "{Libraries}"Interface.o ╢
  15.     "{Libraries}"Runtime.o
  16.  
  17. SetMenu ── {Common} SetMenu.p.o
  18.     Link -t 'MPST' -c 'MPS ' -o SetMenu ╢
  19.         SetMenu.p.o {LibsNeeded}
  20. DemoteMenu ── {Common} DemoteMenu.p.o
  21.     Link -t 'MPST' -c 'MPS ' -o DemoteMenu ╢
  22.         DemoteMenu.p.o {LibsNeeded}
  23. PromoteMenu ── {Common} PromoteMenu.p.o
  24.     Link -t 'MPST' -c 'MPS ' -o PromoteMenu ╢
  25.         PromoteMenu.p.o {LibsNeeded}
  26. SetSubMenu ── {Common} SetSubMenu.p.o
  27.     Link -t 'MPST' -c 'MPS ' -o SetSubMenu ╢
  28.         SetSubMenu.p.o {LibsNeeded}
  29. FindMenuItem ── {Common} FindMenuItem.p.o
  30.     Link -t 'MPST' -c 'MPS ' -o FindMenuItem ╢
  31.         FindMenuItem.p.o {LibsNeeded}
  32.