home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-08-17 | 1.5 KB | 72 lines |
- #
- # File: makefile
- #
- # Contains: Build misc MPW tools under MPW 3.2
- # MPW 3.1 uses a different set of lib files.
- #
- # Written by: Sak Wathanasin
- # Network Analysis Ltd
- # 178 Wainbody Ave South
- # Coventry CV3 6BX
- # UK
- # Phone: (+44) 203 419996
- # E-mail: sw@network-analysis-ltd.co.uk
- #
- # Copyright: Public domain
- #
- # Change History (most recent first):
- #
- # 8/6/91 sw Release for Developer Council
- #
- # To Do:
- #
-
- COptions = -d MPW
- libs31 = "{Clibraries}CRuntime.o" ╢
- "{CLibraries}CInterface.o" ╢
- "{CLibraries}StdCLib.o" ╢
- "{Libraries}"ToolLibs.o ╢
- "{Libraries}Interface.o"
-
- libs32 = "{Libraries}"Runtime.o ╢
- "{Clibraries}"StdCLib.o ╢
- "{Libraries}"ToolLibs.o ╢
- "{Libraries}"Interface.o
-
- # change the following line as appr
- libs = {libs32}
-
- all ─ mtar muntar xbin join atob btoa uuencode
-
- atob ─ atob.c.o
- Link -w -o atob -t MPST -c "MPS " atob.c.o ╢
- {libs}
-
- btoa ─ btoa.c.o
- Link -w -o btoa -t MPST -c "MPS " btoa.c.o ╢
- {libs}
-
- join ─ join.c.o
- Link -w -o join -t MPST -c "MPS " join.c.o ╢
- {libs}
-
- mcompress ─ mcompress.c.o compstream.a.o
- Link -w -o mcompress -c 'MPS ' -t 'MPST' mcompress.c.o compstream.a.o ╢
- {libs}
-
- muntar ─ muntar.c.o
- Link -o muntar -c 'MPS ' -t 'MPST' muntar.c.o ╢
- {libs}
-
- mtar ─ mtar.c.o
- Link -o mtar -c 'MPS ' -t 'MPST' mtar.c.o ╢
- {libs}
-
- xbin ─ xbin.c.o
- Link -w -o xbin -t MPST -c "MPS " xbin.c.o ╢
- {libs}
-
- uuencode ─ uuencode.c.o
- Link -w -o uuencode -t MPST -c "MPS " uuencode.c.o ╢
- {libs}
-