home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / WINDOWS / UTILS / MEWIN10S.ZIP / MEWIN.MAK < prev    next >
Text File  |  1992-03-14  |  3KB  |  200 lines

  1. .AUTODEPEND
  2.  
  3. # This makefile for Borland C 3.0 compiles MEWIN.EXE (with source-level
  4. # debugging information which you may want to remove with TDSTRIP)
  5. # Be advised that you need to change the path of the INCLUDE and LIB
  6. # directories to match their real location on your computer.
  7.  
  8. #        *Translator Definitions*
  9. CC = bcc +MEWIN.CFG
  10. TASM = TASM
  11. TLINK = tlink
  12. LIBPATH = C:\BC30\LIB
  13. INCLUDEPATH = C:\BC30\INCLUDE
  14.  
  15. #        *Implicit Rules*
  16. .c.obj:
  17.   $(CC) -c {$< }
  18.  
  19. .cpp.obj:
  20.   $(CC) -c {$< }
  21.  
  22. #        *List Macros*
  23. Link_Exclude =  \
  24.   mewin.res
  25.  
  26. Link_Include =  \
  27.   basic.obj \
  28.   bind.obj \
  29.   buffer.obj \
  30.   char.obj \
  31.   crypt.obj \
  32.   display.obj \
  33.   dolock.obj \
  34.   eval.obj \
  35.   exec.obj \
  36.   file.obj \
  37.   fileio.obj \
  38.   input.obj \
  39.   isearch.obj \
  40.   line.obj \
  41.   lock.obj \
  42.   main.obj \
  43.   mouse.obj \
  44.   random.obj \
  45.   region.obj \
  46.   screen.obj \
  47.   search.obj \
  48.   window.obj \
  49.   word.obj \
  50.   mswdisp.obj \
  51.   mswdrv.obj \
  52.   mswemacs.obj \
  53.   mswexec.obj \
  54.   mswfile.obj \
  55.   mswfont.obj \
  56.   mswinput.obj \
  57.   mswmem.obj \
  58.   mswmenu.obj \
  59.   mswsys.obj \
  60.   mewin.def
  61.  
  62. #        *Explicit Rules*
  63. MEWIN.exe: MEWIN.cfg $(Link_Include) $(Link_Exclude)
  64.   $(TLINK) /v/s/c/Twe/P-/L$(LIBPATH) @&&|
  65. c0wl.obj+
  66. basic.obj+
  67. bind.obj+
  68. buffer.obj+
  69. char.obj+
  70. crypt.obj+
  71. display.obj+
  72. dolock.obj+
  73. eval.obj+
  74. exec.obj+
  75. file.obj+
  76. fileio.obj+
  77. input.obj+
  78. isearch.obj+
  79. line.obj+
  80. lock.obj+
  81. main.obj+
  82. mouse.obj+
  83. random.obj+
  84. region.obj+
  85. screen.obj+
  86. search.obj+
  87. window.obj+
  88. word.obj+
  89. mswdisp.obj+
  90. mswdrv.obj+
  91. mswemacs.obj+
  92. mswexec.obj+
  93. mswfile.obj+
  94. mswfont.obj+
  95. mswinput.obj+
  96. mswmem.obj+
  97. mswmenu.obj+
  98. mswsys.obj
  99. MEWIN,MEWIN
  100. mathwl.lib+
  101. import.lib+
  102. cwl.lib
  103. mewin.def
  104. |
  105.   RC -T mewin.res MEWIN.exe
  106.  
  107.  
  108. #        *Individual File Dependencies*
  109. mewin.res: mewin.rc mswrid.h mswmenu.h mswmenu.rc mswfile.dlg mswabout.dlg \
  110.            mswfonts.dlg mswmodes.dlg mswprg.dlg mswmlh.dlg \
  111.            mswapp.ico mswscr.ico mswcur.cur mswnot.cur mswwait.ico
  112.     RC -R -I$(INCLUDEPATH) -FO mewin.res MEWIN.RC
  113.  
  114. basic.obj: basic.c 
  115.  
  116. bind.obj: bind.c 
  117.  
  118. buffer.obj: buffer.c 
  119.  
  120. char.obj: char.c 
  121.  
  122. crypt.obj: crypt.c 
  123.  
  124. display.obj: display.c 
  125.  
  126. dolock.obj: dolock.c 
  127.  
  128. eval.obj: eval.c 
  129.  
  130. exec.obj: exec.c 
  131.  
  132. file.obj: file.c 
  133.  
  134. fileio.obj: fileio.c 
  135.  
  136. input.obj: input.c 
  137.  
  138. isearch.obj: isearch.c 
  139.  
  140. line.obj: line.c 
  141.  
  142. lock.obj: lock.c 
  143.  
  144. main.obj: main.c 
  145.  
  146. mouse.obj: mouse.c 
  147.  
  148. random.obj: random.c 
  149.  
  150. region.obj: region.c 
  151.  
  152. screen.obj: screen.c 
  153.  
  154. search.obj: search.c 
  155.  
  156. window.obj: window.c 
  157.  
  158. word.obj: word.c 
  159.  
  160. mswdisp.obj: mswdisp.c 
  161.  
  162. mswdrv.obj: mswdrv.c 
  163.  
  164. mswemacs.obj: mswemacs.c 
  165.  
  166. mswexec.obj: mswexec.c 
  167.  
  168. mswfile.obj: mswfile.c 
  169.  
  170. mswfont.obj: mswfont.c 
  171.  
  172. mswinput.obj: mswinput.c 
  173.  
  174. mswmem.obj: mswmem.c 
  175.  
  176. mswmenu.obj: mswmenu.c 
  177.  
  178. mswsys.obj: mswsys.c 
  179.  
  180. #        *Compiler Configuration File*
  181. MEWIN.cfg: MEWIN.mak
  182.   copy &&|
  183. -ml
  184. -2
  185. -v
  186. -Os
  187. -d
  188. -WE
  189. -w-par
  190. -w-cpt
  191. -w-rng
  192. -w-pia
  193. -w-rvl
  194. -w-rpt
  195. -I$(INCLUDEPATH)
  196. -L$(LIBPATH)
  197. | MEWIN.cfg
  198.  
  199.  
  200.