home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / isam / tut2 / empmaint.mak < prev   
Encoding:
Text File  |  1994-02-08  |  1.1 KB  |  67 lines

  1. .AUTODEPEND
  2.  
  3. #               *Translator Definitions*
  4. CC = bcc +EMPMAINT.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\BORLANDC\LIB;C:\ISAMMGR\LIB
  9. INCLUDEPATH = C:\BORLANDC\INCLUDE;C:\ISAMMGR\INCLUDE
  10.  
  11.  
  12. #               *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #               *List Macros*
  20. Link_Exclude =  \
  21.  employee.h \
  22.  dept.h
  23.  
  24. Link_Include =  \
  25.  employee.obj \
  26.  dept.obj \
  27.  empmaint.obj \
  28.  {$(LIBPATH)}imbc.lib
  29.  
  30. #               *Explicit Rules*
  31. empmaint.exe: empmaint.cfg $(Link_Exclude) $(Link_Include)
  32.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  33. c0c.obj+
  34. employee.obj+
  35. dept.obj+
  36. empmaint.obj
  37. empmaint
  38.         # no map file
  39. imbc.lib+
  40. emu.lib+
  41. mathc.lib+
  42. cc.lib
  43. |
  44.  
  45.  
  46. #               *Individual File Dependencies*
  47.  
  48. employee.obj: empmaint.cfg employee.cpp 
  49.  
  50. empmaint.obj: empmaint.cfg empmaint.cpp 
  51.  
  52. employee.h: empmaint.cfg employee.ddf 
  53.     DDF EMPLOYEE.DDF
  54.  
  55. dept.h: empmaint.cfg dept.ddf
  56.         DDF DEPT.DDF
  57.  
  58. #               *Compiler Configuration File*
  59. empmaint.cfg: empmaint.mak
  60.   copy &&|
  61. -mc
  62. -I$(INCLUDEPATH)
  63. -L$(LIBPATH)
  64. | empmaint.cfg
  65.  
  66.  
  67.