home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-07-08 | 611 b | 25 lines |
-
- # SAS/C Makefile (lmk) for GRn, v1.16e
- # inc: should point to the directory containing the 2.04 CBM includes
-
- LIB= lib:lcnb.lib+lib:amiga2.0.lib
-
- GRN= builddir.o memalloc.o headers.o grn.o gmode.o amode.o system.o umain.o requesters.o sort.o
-
- .c.o:
- lc -j104 -O -ccwm -b0 -r0 -Hram:grn.pre -iinc: $*.c
-
- all: ram:grn.pre grn
-
- ram:grn.pre: grn.pre
- copy grn.pre ram:
-
- grn.pre: include.c system.h
- lc -O -b0 -r0 -pH -ogrn.pre -iinc: include.c
- copy grn.pre ram:grn.pre
-
- grn: $(GRN)
- blink FROM lib:c.o+$(GRN) TO grn LIBRARY $(LIB)
- copy grn uucp:c
-
-