home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_12 / 2n12011b < prev    next >
Text File  |  1991-10-29  |  451b  |  15 lines

  1. #######################################################
  2. ##  makefile                                         ##
  3. ## -- Project file for mlebug program.               ##
  4. #######################################################
  5. all:    mlebug.exe
  6.  
  7. mlebug.obj: mlebug.c
  8.     cl -c -AM -Gsw -Oas -Zdpe -W3 mlebug.c
  9.  
  10. mlebug.exe: mlebug.obj mlebug.def mlebug.rc
  11.     link /NOD/m mlebug,,, libw mlibcew, mlebug.def
  12.     rc mlebug
  13.     mapsym mlebug
  14.  
  15.