home *** CD-ROM | disk | FTP | other *** search
- .AUTODEPEND
-
- # *Translator Definitions*
- CC = bcc +EMPMAINT.CFG
- TASM = TASM
- TLIB = tlib
- TLINK = tlink
- LIBPATH = C:\BORLANDC\LIB;C:\ISAMMGR\LIB
- INCLUDEPATH = C:\BORLANDC\INCLUDE;C:\ISAMMGR\INCLUDE
-
-
- # *Implicit Rules*
- .c.obj:
- $(CC) -c {$< }
-
- .cpp.obj:
- $(CC) -c {$< }
-
- # *List Macros*
- Link_Exclude = \
- employee.h \
- dept.h
-
- Link_Include = \
- employee.obj \
- dept.obj \
- empmaint.obj \
- {$(LIBPATH)}imbc.lib
-
- # *Explicit Rules*
- empmaint.exe: empmaint.cfg $(Link_Exclude) $(Link_Include)
- $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
- c0c.obj+
- employee.obj+
- dept.obj+
- empmaint.obj
- empmaint
- # no map file
- imbc.lib+
- emu.lib+
- mathc.lib+
- cc.lib
- |
-
-
- # *Individual File Dependencies*
-
- employee.obj: empmaint.cfg employee.cpp
-
- empmaint.obj: empmaint.cfg empmaint.cpp
-
- employee.h: empmaint.cfg employee.ddf
- DDF EMPLOYEE.DDF
-
- dept.h: empmaint.cfg dept.ddf
- DDF DEPT.DDF
-
- # *Compiler Configuration File*
- empmaint.cfg: empmaint.mak
- copy &&|
- -mc
- -I$(INCLUDEPATH)
- -L$(LIBPATH)
- | empmaint.cfg
-
-
-