home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / usagep24.lzh / USAGEP.MAK < prev    next >
Text File  |  1993-05-12  |  2KB  |  86 lines

  1. #=============================================================
  2. #
  3. #    USAGEP.MAK - Makefile for project D:\mjcprgs\usagep\usagep.prj
  4. #        Created on 05/12/93 at 10:16
  5. #
  6. #=============================================================
  7.  
  8. .AUTODEPEND
  9.  
  10. #=============================================================
  11. #        Translator Definitions
  12. #=============================================================
  13. CC = bcc +USAGEP.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;d:\bcos2\classlib\lib;.
  20. INCLUDEPATH = D:\BCOS2\INCLUDE;d:\bcos2\classlib\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.  usagep.obj
  45.  
  46. #=============================================================
  47. #        Explicit Rules
  48. #=============================================================
  49. usagep.exe: usagep.cfg $(EXE_DEPENDENCIES)
  50.   $(TLINK) /v /x /Toe /ap /L$(LIBPATH) @&&|
  51. D:\BCOS2\LIB\C02.OBJ+
  52. usagep.obj
  53. usagep
  54.         # no map file
  55. D:\BCOS2\LIB\C2.LIB+
  56. D:\BCOS2\LIB\OS2.LIB
  57.  
  58. |
  59.  
  60.  
  61. #=============================================================
  62. #        Individual File Dependencies
  63. #=============================================================
  64. usagep.obj: usagep.cfg usagep.c 
  65.  
  66. #=============================================================
  67. #        Compiler Configuration File
  68. #=============================================================
  69. usagep.cfg: usagep.mak
  70.   copy &&|
  71. -Oi
  72. -Oz
  73. -Ob
  74. -Oe
  75. -Oc
  76. -L$(LIBPATH)
  77. -I$(INCLUDEPATH)
  78. -vi-
  79. -k-
  80. -O
  81. -Ot
  82. -v
  83. | usagep.cfg
  84.  
  85.  
  86.