.AUTODEPEND

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


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

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

#		*List Macros*


EXE_dependencies =  \
 indent.obj \
 {$(LIBPATH)}classes.lib

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


#		*Individual File Dependencies*
indent.obj: indent.cfg indent.cpp 

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


