home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 165 / WDFMT25.ZIP / SM < prev    next >
Text File  |  1990-03-20  |  668b  |  33 lines

  1. # make file for WDMCFMT
  2.  
  3. c_options = /AL /Lr /Zi /Zp /Od /c
  4. l_options = /CO
  5.  
  6.  
  7. wdfmt.obj  :  wdfmt.c  defs.h structs.h  wdfmt.fst
  8.    cl $(c_options) wdfmt.c
  9.    copy wdfmt.c a:
  10.  
  11. diskstuf.obj :    diskstuf.c  defs.h structs.h  wdfmt.fst
  12.    cl $(c_options) diskstuf.c
  13.    copy diskstuf.c a:
  14.  
  15. at_io.obj : at_io.asm
  16.    masm  at_io.asm;;;
  17.    copy at_io.asm a:
  18.  
  19. keys.obj : keys.c
  20.    cl $(c_options) keys.c
  21.    copy keys.c a:
  22.  
  23. video.obj : video.c
  24.    cl $(c_options) video.c
  25.    copy video.c a:
  26.  
  27. oldfile.mak : newfile.mak
  28.    link $(l_options) wdfmt+keys+video+diskstuf+at_io,wdfmt, ,tools_2+ct5_m5l;
  29.    copy wdfmt.exe a:
  30.    copy wdfmt.exe wdfmt.slw
  31.  
  32.  
  33.