home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-06-02 | 623 b | 23 lines |
-
- # You must modify SYMBOLS to some temporary directory if you do not
- # already have a complete precompiled symbol table (*/*.h .. only
- # sub-directory includes, not top level includes). Remember to
- # use +L when generating the precompiled symbol table.
-
- SYMBOLS= vd0:include/symbols.m
-
- all: lib test
-
- lib:
- cc +BCDL +p +I$(SYMBOLS) testlib.c -o ram:testlib.o
- ln +Q ram:testlib.o -lcl32
- copy ram:testlib libs:testlib.library
- delete ram:testlib ram:testlib.o
-
- test:
- cc +L +I$(SYMBOLS) test.c -o ram:test.o
- as hlib.asm -o ram:hlib.o
- ln +Q ram:test.o ram:hlib.o -lc32
- delete ram:test.o
-
-