.AUTODEPEND
.SWAP

CC      = bcc +async.cfg
TLINK   = tlink
INCLUDE = \borlandc\include;\src\common
LIB     = \borlandc\lib

.c.obj:
  $(CC) -c {$< }


EXE_dependencies =  \
  async.obj     setuart.obj     detect.obj      isr.obj     fifo.obj    \
  line.obj      asyio.obj                                               \
  term.obj

#                *Explicit Rules*
term.exe: async.cfg $(EXE_dependencies)
  $(TLINK) /v/x/n/c/P-/L$(LIB) @&&|
c0l.obj+
async.obj+
setuart.obj+
detect.obj+
isr.obj+
fifo.obj+
line.obj+
term.obj+
asyio.obj
term.exe
                # no map file
cl.lib
|

#                *Compiler Configuration File*
async.cfg: makefile.
  copy &&|
-ml
-2
-w
-v
-wpin
-wamb
-wamp
-wasm
-wpro
-wdef
-wnod
-wstv
-wuse
-I$(INCLUDE)
-L$(LIB)
-P-.C
| async.cfg
