home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-09 | 800 b | 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
-