home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
libraries
/
rexxhostlib_403
/
makefile
< prev
next >
Wrap
Makefile
|
1990-11-17
|
800b
|
32 lines
################################################################
#
# MakeFile to build rexxhost.library & FancyDemo.
#
# Aztec 'C' 5.0 is required to compile the library,
# FancyDemo will probably compile with any other
# compiler.
#
################################################################
CFLAGS = -so -hi RexxHost.SYM
OBJS = LibStartup.o LibMain.o RexxHostLib.o StringAsm.o
all: RexxHost.SYM rexxhost.library FancyDemo
rexxhost.library: $(OBJS)
LN +q -m -o rexxhost.library $(OBJS) -Lrexx -Lc
Protect rexxhost.library -e
Copy rexxhost.library LIBS: CLONE
LibMain.o: LibMain.c
CC -hi RexxHost.SYM LibMain.c
FancyDemo: FancyDemo.o
LN +q FancyDemo.o -Lc
FancyDemo.o: FancyDemo.c
CC FancyDemo.c
RexxHost.SYM: PreInclude.c
CC -ho RexxHost.SYM PreInclude.c