home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-07-10 | 2.2 KB | 88 lines | [TEXT/MPS ] |
- # File MakeFile Copyright (C) 1996 by John R. Montbriand. All Rights Reserved.
- # PixMap manipulation routines, Rez file.
- # Copyright (c) 1996, 1997 by John Montbriand. All Rights Reserved.
- # Permission hereby granted for public use.
- # Distribute freely in areas where the laws of copyright apply.
- # USE AT YOUR OWN RISK.
- # DO NOT DISTRIBUTE MODIFIED COPIES.
- # Comments/questions/postcards* to the author at the address:
- # John Montbriand
- # P.O. Box. 1133
- # Saskatoon Saskatchewan Canada
- # S7K 3N2
- # or by email at:
- # tinyjohn@sk.sympatico.ca
- # *if you mail a postcard, then I will provide you with technical support
- # regarding questions you may have about this file.
-
-
-
- ### variables defining what compiler commands to use
-
- COMP_PPC = MrC -w off -align power -proto strict
-
- COMP_68K = SC -w off -align power -proto strict
-
-
- ### resource fork
-
- PixExample ƒƒ PixExample.r PixExample.rsrc
- Rez -i {RIncludes} PixExample.r -o PixExample
-
- PixExample ƒƒ :obj:PixExample.c.68k ∂
- :obj:CSApp.c.68k ∂
- :obj:PixMap.c.68k ∂
- PixExample.r PixExample.rsrc
- Link -w -t APPL -c '????' ∂
- -o PixExample ∂
- :obj:PixExample.c.68k ∂
- :obj:CSApp.c.68k ∂
- :obj:PixMap.c.68k ∂
- {CLibraries}StdCLib.o ∂
- {Libraries}Interface.o ∂
- {Libraries}MacRuntime.o
-
-
- # data fork
-
- PixExample ƒƒ :obj:PixExample.c.ppc ∂
- :obj:CSApp.c.ppc ∂
- :obj:PixMap.c.ppc ∂
- PixExample.r PixExample.rsrc
- PPCLink -w -o PixExample ∂
- :obj:CSApp.c.ppc ∂
- :obj:PixMap.c.ppc ∂
- :obj:PixExample.c.ppc ∂
- {SharedLibraries}InterfaceLib ∂
- {SharedLibraries}StdCLib ∂
- {SharedLibraries}MathLib ∂
- {PPCLibraries}PPCCRuntime.o ∂
- {PPCLibraries}StdCRuntime.o
-
-
-
- ### PowerPC compiler commands
-
- :obj:PixExample.c.ppc ƒ PixExample.c PixMap.h CSApp.h
- {COMP_PPC} PixExample.c -o :obj:PixExample.c.ppc
-
- :obj:PixMap.c.ppc ƒ PixMap.c PixMap.h
- {COMP_PPC} PixMap.c -o :obj:PixMap.c.ppc
-
- :obj:CSApp.c.ppc ƒ CSApp.c CSApp.h
- {COMP_PPC} CSApp.c -o :obj:CSApp.c.ppc
-
-
-
- ### 68000 compiler commands
-
- :obj:PixExample.c.68k ƒ PixExample.c PixMap.h CSApp.h
- {COMP_68K} PixExample.c -o :obj:PixExample.c.68k
-
- :obj:PixMap.c.68k ƒ PixMap.c PixMap.h
- {COMP_68K} PixMap.c -o :obj:PixMap.c.68k
-
- :obj:CSApp.c.68k ƒ CSApp.c CSApp.h
- {COMP_68K} CSApp.c -o :obj:CSApp.c.68k
-
-