home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / du.zip / du.mak < prev    next >
Text File  |  1993-04-29  |  2KB  |  100 lines

  1. #=============================================================
  2. #
  3. #    DU.MAK - Makefile for project D:\u\prj2\kensapps\du\du.PRJ
  4. #        Created on 04/29/93 at 17:52
  5. #
  6. #=============================================================
  7.  
  8. .AUTODEPEND
  9.  
  10. #=============================================================
  11. #        Translator Definitions
  12. #=============================================================
  13. CC = bcc +DU.CFG
  14. TASM = tasm.exe
  15. TLIB = tlib.exe
  16. TLINK = tlink
  17. RC = brcc.exe
  18. RB = rc.exe
  19. LIBPATH = D:\BCOS2\LIB
  20. INCLUDEPATH = D:\BCOS2\INCLUDE
  21.  
  22.  
  23. #=============================================================
  24. #        Implicit Rules
  25. #=============================================================
  26. .c.obj:
  27.   $(CC) -c {$< }
  28.  
  29. .cpp.obj:
  30.   $(CC) -c {$< }
  31.  
  32. .asm.obj:
  33.   $(TASM) -Mx $*.asm,$*.obj
  34.  
  35. .rc.res:
  36.   $(RC) -r $*.rc
  37.  
  38. #=============================================================
  39. #        List Macros
  40. #=============================================================
  41.  
  42.  
  43. EXE_DEPENDENCIES =  \
  44.  du.obj
  45.  
  46. #=============================================================
  47. #        Explicit Rules
  48. #=============================================================
  49. du.exe: du.cfg $(EXE_DEPENDENCIES)
  50.   $(TLINK) /B:0x10000 /c /m /Toe /ap /L$(LIBPATH) @&&|
  51. D:\BCOS2\LIB\C02.OBJ+
  52. du.obj
  53. du,du
  54. D:\BCOS2\LIB\C2I.LIB+
  55. D:\BCOS2\LIB\OS2.LIB
  56.  
  57. |
  58.  
  59.  
  60. #=============================================================
  61. #        Individual File Dependencies
  62. #=============================================================
  63. DU.obj: du.cfg DU.C 
  64.  
  65. #=============================================================
  66. #        Compiler Configuration File
  67. #=============================================================
  68. du.cfg: du.mak
  69.   copy &&|
  70. -Oi
  71. -Oz
  72. -Ob
  73. -Oe
  74. -Oc
  75. -L$(LIBPATH)
  76. -I$(INCLUDEPATH)
  77. -H=D:\u\prj2\kensapps\du\du.CSM
  78. -vi-
  79. -d
  80. -k-
  81. -O
  82. -Ot
  83. -v
  84. -w
  85. -wnod
  86. -wuse
  87. -wucp
  88. -wstv
  89. -wsig
  90. -wdef
  91. -wcln
  92. -wasm
  93. -wamp
  94. -wamb
  95. -wbbf
  96. -wpin
  97. | du.cfg
  98.  
  99.  
  100.