home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / mpwtools.cpt / misc src / makefile < prev    next >
Encoding:
Makefile  |  1991-08-17  |  1.5 KB  |  72 lines

  1. #
  2. #    File:        makefile
  3. #
  4. #    Contains:    Build misc MPW tools under MPW 3.2
  5. #                MPW 3.1 uses a different set of lib files.
  6. #
  7. #    Written by:    Sak Wathanasin
  8. #                Network Analysis Ltd
  9. #                178 Wainbody Ave South
  10. #                Coventry CV3 6BX
  11. #                UK
  12. #    Phone:        (+44) 203 419996
  13. #    E-mail:        sw@network-analysis-ltd.co.uk
  14. #
  15. #    Copyright:    Public domain
  16. #
  17. #    Change History (most recent first):
  18. #
  19. #                  8/6/91    sw        Release for Developer Council
  20. #
  21. #    To Do:
  22. #
  23.  
  24. COptions    =    -d MPW
  25. libs31        =    "{Clibraries}CRuntime.o"    ╢
  26.                 "{CLibraries}CInterface.o"    ╢
  27.                 "{CLibraries}StdCLib.o"       ╢
  28.                 "{Libraries}"ToolLibs.o    ╢
  29.                 "{Libraries}Interface.o"
  30.  
  31. libs32        =    "{Libraries}"Runtime.o ╢
  32.                 "{Clibraries}"StdCLib.o ╢
  33.                 "{Libraries}"ToolLibs.o ╢
  34.                 "{Libraries}"Interface.o
  35.  
  36. #    change the following line as appr
  37. libs        = {libs32}
  38.  
  39. all    ─    mtar muntar xbin join atob btoa uuencode
  40.  
  41. atob    ─ atob.c.o
  42.     Link -w -o atob -t MPST -c "MPS " atob.c.o ╢
  43.         {libs}
  44.  
  45. btoa    ─ btoa.c.o
  46.     Link -w -o btoa -t MPST -c "MPS " btoa.c.o ╢
  47.         {libs}
  48.  
  49. join    ─ join.c.o
  50.     Link -w -o join -t MPST -c "MPS " join.c.o ╢
  51.         {libs}
  52.  
  53. mcompress    ─    mcompress.c.o compstream.a.o
  54.     Link -w -o mcompress -c 'MPS ' -t 'MPST' mcompress.c.o compstream.a.o ╢
  55.         {libs}
  56.         
  57. muntar    ─    muntar.c.o
  58.     Link -o muntar -c 'MPS ' -t 'MPST' muntar.c.o ╢
  59.         {libs}
  60.         
  61. mtar    ─    mtar.c.o
  62.     Link -o mtar -c 'MPS ' -t 'MPST' mtar.c.o ╢
  63.         {libs}
  64.  
  65. xbin    ─    xbin.c.o
  66.     Link -w -o xbin -t MPST -c "MPS " xbin.c.o ╢
  67.         {libs}
  68.  
  69. uuencode    ─    uuencode.c.o
  70.     Link -w -o uuencode -t MPST -c "MPS " uuencode.c.o ╢
  71.         {libs}
  72.