.AUTODEPEND

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


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

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

#		*List Macros*

everything: bmakefil. exput.exe

bmakefil.: makefile.
	copy makefile. bmakefil.

EXE_dependencies =  \
 exput.obj \
 ..\..\lib\cmtlib.lib

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


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

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


