1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# Macintosh MPW-C Makefile
# using Simple Input/Output Window library
#
# File: ReadseqSIOW.make
# Target: ReadseqSIOW
# Sources: readseq.c ureadseq.c ureadasn.c macinit.c
# Created: Wednesday, November 13, 1991 8:23:00 PM
#OBJECTS = macinit.c.o readseq.c.o ureadseq.c.o
#COptions = -D SIOW # -r
#if NCBI is available, set path here to NCBI toolkit:
NCBI = "{Boot}@molbio:ncbi:"
OBJECTS = macinit.c.o readseq.c.o ureadseq.c.o ureadasn.c.o
COptions = -D SIOW -d NCBI -i "{NCBI}"include:
NCBILIBS = "{NCBI}"lib:libncbi.o "{NCBI}"lib:libncbiobj.o "{NCBI}"lib:libvibrant.o
#endif NCBI
ReadseqSIOW ReadseqSIOW.make {OBJECTS}
Link -d -c '????' -t APPL
{OBJECTS}
"{CLibraries}"StdClib.o
"{MPW}"Libraries:Libraries:SIOW.o
"{Libraries}"Runtime.o
"{Libraries}"Interface.o
#if NCBI
{NCBILIBS}
"{CLibraries}"CSANELib.o
"{CLibraries}"Math.o
#endif NCBI
-o ReadseqSIOW
readseq.c.o ReadseqSIOW.make readseq.c
ureadseq.c.o ReadseqSIOW.make ureadseq.c
macinit.c.o ReadseqSIOW.make macinit.c
#if NCBI
ureadasn.c.o ReadseqSIOW.make ureadasn.c
#endif NCBI
ReadseqSIOW macinit.r
Rez -a macinit.r -o ReadseqSIOW
|