home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-18 | 472 b | 27 lines |
- #
- # makefile for explode and config
- #
- # Bruno Costa - 30 Aug 89 - 30 Dec 89
- #
-
- .c.o:
- LC:lc -cus -d3 $*
-
- .a.o:
- asm $*
-
- all: config explode
-
- config: config.o
- LC:blink from LIB:c.o config.o to config \
- library LIB:lc.lib smallcode smalldata nodebug batch
-
- explode.o: explode.c
- LC:lc -cus -b0 -r0 -v $*
-
- explode: explode.o exp.o
- LC:blink from LIB:cback.o explode.o exp.o to explode \
- library LIB:lc.lib batch DEFINE __main=__tinymain DEFINE _exit=__exit \
- sd nodebug
-
-