home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-07-03 | 509 b | 25 lines |
- ##
- ## rexxhost.library - ARexx host management support library
- ##
- ## Copyright © 1990-1992 by Olaf `Olsen' Barthel
- ## All Rights Reserved
- ##
-
- .c.o:
- LC $(CFLAGS) $*.c
-
- .asm.o:
- ASM -IASM: $*.asm
-
- CFLAGS = -cimqws -b1 -r1 -v -mt0 -HRexxHost.SYM
- OBJS = RomTag.o LibMain.o RexxHostLib.o
-
- all: RexxHost.SYM rexxhost.library
-
- rexxhost.library: $(OBJS)
- BLINK $(OBJS) TO $@ LIB LIB:amiga2.0.lib LIB:lc.lib SC SD ND
- Protect $@ -e
-
- RexxHost.SYM: PreInclude.c
- LC -cimqw -ph -oRexxHost.SYM PreInclude.c
-