.AUTODEPEND

#		*Translator Definitions*
CC = bcc32 +test.cfg
TASM = TASM /zi
TLIB = tlib
LINK = link
LIBPATH = C:\BC45\LIB;..\..\..\os\asm\oslib
INCLUDEPATH = C:\BC45\INCLUDE;..\..\..\os\asm\oslib


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

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

#		*List Macros*
#		*Explicit Rules*
all: write.exe read.exe
write.exe: test.cfg write.obj
  $(LINK) /c /x /L$(LIBPATH) @&&|
write.exe
write.map
..\..\..\c0os.obj
write.obj
cos.lib
oslib.lib
|
read.exe: test.cfg read.obj
  $(LINK) /c /x /L$(LIBPATH) @&&|
read.exe
read.map
..\..\..\c0os.obj
read.obj
cos.lib
oslib.lib
|

#		*Individual File Dependencies*
write.obj: test.cfg write.c
	$(CC) -c write.c
read.obj: test.cfg read.c
	$(CC) -c read.c
#		*Compiler Configuration File*
test.cfg: 
  copy &&|
-v
-G
-O
-Og
-Oe
-Om
-Ov
-Ol
-Ob
-Op
-Oi
-Z
-vi
-H=TEST.SYM
-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
-w-pro
-I$(INCLUDEPATH)
-L$(LIBPATH)
| test.cfg