home *** CD-ROM | disk | FTP | other *** search
- .AUTODEPEND
-
- # *Translator Definitions*
- CC = bcc +MESSAGE.CFG
- TASM = TASM
- TLIB = tlib
- TLINK = tlink
- LIBPATH = C:\BC20\TVISION\LIB;C:\BC20\LIB;C:\BC20\CLASSLIB\LIB
- INCLUDEPATH = C:\BC20\TVISION\INCLUDE;C:\BC20\INCLUDE;C:\BC20\CLASSLIB\INCLUDE
-
-
- # *Implicit Rules*
- .c.obj:
- $(CC) -c {$< }
-
- .cpp.obj:
- $(CC) -c {$< }
-
- # *List Macros*
-
-
- EXE_dependencies = \
- message.obj \
- myapp.obj \
- myview.obj \
- heapview.obj \
- dialog.obj \
- {$(LIBPATH)}tv.lib
-
- # *Explicit Rules*
- message.exe: message.cfg $(EXE_dependencies)
- $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
- c0l.obj+
- message.obj+
- myapp.obj+
- myview.obj+
- heapview.obj+
- dialog.obj
- message
- # no map file
- tv.lib+
- emu.lib+
- mathl.lib+
- cl.lib
- |
-
-
- # *Individual File Dependencies*
- message.obj: message.cfg message.cpp
-
- myapp.obj: message.cfg myapp.cpp
-
- myview.obj: message.cfg myview.cpp
-
- heapview.obj: message.cfg heapview.cpp
-
- dialog.obj: message.cfg dialog.cpp
-
- # *Compiler Configuration File*
- message.cfg: message.mak
- copy &&|
- -ml
- -v
- -vi-
- -H=MESSAGE.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
- -I$(INCLUDEPATH)
- -L$(LIBPATH)
- | message.cfg
-
-
-