.AUTODEPEND

#               *Translator Definitions*
CC = bcc +ADAGIO.CFG
TASM = TASM
TLIB = tlib
TLINK = tlink
LIBPATH = C:\BORLANDC\LIB
INCLUDEPATH = C:\BORLANDC\INCLUDE;..\..\LIB


#               *Implicit Rules*
.c.obj:
  $(CC) -c {$< }

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

#               *List Macros*


EXE_dependencies =  \
 adagio.obj \
 handlers.obj \
 ..\..\lib\cmtlib.lib

#               *Explicit Rules*
everything: adagio.exe bmakefil

bmakefil: makefile
	copy makefile bmakefil

adagio.exe: adagio.cfg $(EXE_dependencies)
  $(TLINK) /v/x/c/P-/C/L$(LIBPATH) @&&|
c0l.obj+
adagio.obj+
handlers.obj
adagio
		# no map file
..\..\lib\cmtlib.lib+
emu.lib+
mathl.lib+
cl.lib
|


#               *Individual File Dependencies*
adagio.obj: adagio.cfg adagio.c 

handlers.obj: adagio.cfg handlers.c 

#               *Compiler Configuration File*
adagio.cfg: makefile
  copy &&|
-ml
-v
-vi
-w-ret
-w-nci
-w-inl
-wpin
-w-par
-wcln
-w-cpt
-w-dup
-w-pia
-wsig
-wnod
-w-ill
-w-sus
-wucp
-w-ext
-w-ias
-w-ibc
-w-pre
-w-nst
-I$(INCLUDEPATH)
-L$(LIBPATH)
| adagio.cfg


