.AUTODEPEND

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

everything: bmakefil. conduct.exe

bmakefil.: makefile.
	copy makefile bmakefil.


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

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

#               *List Macros*


EXE_dependencies =  \
 cevt.obj \
 conduct.obj \
 evt.obj \
 iter.obj \
 match1.obj \
 sched2.obj \
 score.obj \
 ..\..\lib\cmtlib.lib

#               *Explicit Rules*
conduct.exe: conduct.cfg $(EXE_dependencies)
  $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
c0l.obj+
cevt.obj+
conduct.obj+
evt.obj+
iter.obj+
match1.obj+
sched2.obj+
score.obj
conduct
		# no map file
..\..\lib\cmtlib.lib+
emu.lib+
mathl.lib+
cl.lib
|


#               *Individual File Dependencies*
cevt.obj: conduct.cfg cevt.c 

conduct.obj: conduct.cfg conduct.c 

evt.obj: conduct.cfg evt.c 

iter.obj: conduct.cfg iter.c 

match1.obj: conduct.cfg match1.c 

sched2.obj: conduct.cfg sched2.c 

score.obj: conduct.cfg score.c 

#               *Compiler Configuration File*
conduct.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)
| conduct.cfg


