home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / tvision / mess1 / message.mak < prev    next >
Encoding:
Text File  |  1992-01-31  |  1.3 KB  |  93 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +MESSAGE.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\BC20\TVISION\LIB;C:\BC20\LIB;C:\BC20\CLASSLIB\LIB
  9. INCLUDEPATH = C:\BC20\TVISION\INCLUDE;C:\BC20\INCLUDE;C:\BC20\CLASSLIB\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  message.obj \
  24.  myapp.obj \
  25.  myview.obj \
  26.  heapview.obj \
  27.  dialog.obj \
  28.  {$(LIBPATH)}tv.lib
  29.  
  30. #        *Explicit Rules*
  31. message.exe: message.cfg $(EXE_dependencies)
  32.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  33. c0l.obj+
  34. message.obj+
  35. myapp.obj+
  36. myview.obj+
  37. heapview.obj+
  38. dialog.obj
  39. message
  40.         # no map file
  41. tv.lib+
  42. emu.lib+
  43. mathl.lib+
  44. cl.lib
  45. |
  46.  
  47.  
  48. #        *Individual File Dependencies*
  49. message.obj: message.cfg message.cpp 
  50.  
  51. myapp.obj: message.cfg myapp.cpp 
  52.  
  53. myview.obj: message.cfg myview.cpp 
  54.  
  55. heapview.obj: message.cfg heapview.cpp 
  56.  
  57. dialog.obj: message.cfg dialog.cpp 
  58.  
  59. #        *Compiler Configuration File*
  60. message.cfg: message.mak
  61.   copy &&|
  62. -ml
  63. -v
  64. -vi-
  65. -H=MESSAGE.SYM
  66. -w-ret
  67. -w-nci
  68. -w-inl
  69. -wpin
  70. -wamb
  71. -wamp
  72. -w-par
  73. -wasm
  74. -wcln
  75. -w-cpt
  76. -wdef
  77. -w-dup
  78. -w-pia
  79. -wsig
  80. -wnod
  81. -w-ill
  82. -w-sus
  83. -wstv
  84. -wucp
  85. -wuse
  86. -w-ext
  87. -w-ias
  88. -I$(INCLUDEPATH)
  89. -L$(LIBPATH)
  90. | message.cfg
  91.  
  92.  
  93.