home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / code / bcpp / file19 / tstvec.mak < prev    next >
Encoding:
Text File  |  1995-05-19  |  827 b   |  67 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +TSTVEC.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = D:\BC31\LIB
  9. INCLUDEPATH = D:\BC31\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.  tstvec.obj \
  24.  rangeerr.obj
  25.  
  26. #        *Explicit Rules*
  27. tstvec.exe: tstvec.cfg $(EXE_dependencies)
  28.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  29. c0s.obj+
  30. tstvec.obj+
  31. rangeerr.obj
  32. tstvec
  33.         # no map file
  34. emu.lib+
  35. maths.lib+
  36. cs.lib
  37. |
  38.  
  39.  
  40. #        *Individual File Dependencies*
  41. tstvec.obj: tstvec.cfg tstvec.cpp 
  42.  
  43. rangeerr.obj: tstvec.cfg rangeerr.cpp 
  44.  
  45. #        *Compiler Configuration File*
  46. tstvec.cfg: tstvec.mak
  47.   copy &&|
  48. -w+
  49. -v
  50. -G
  51. -O
  52. -Og
  53. -Oe
  54. -Om
  55. -Ov
  56. -Ol
  57. -Ob
  58. -Op
  59. -Oi
  60. -Z
  61. -k-
  62. -I$(INCLUDEPATH)
  63. -L$(LIBPATH)
  64. | tstvec.cfg
  65.  
  66.  
  67.