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

  1. #######################################################
  2. ## makefile                                          ##
  3. ## -- Project file for mlefix program.               ##
  4. #######################################################
  5. all:    mlefix.exe
  6.  
  7. mlefix.obj: mlefix.c
  8.     cl -c -AMw -Gsw -Os -Zdpe -W3 mlefix.c
  9.  
  10. mlefix.exe: mlefix.obj mlefix.def
  11.     link /m mlefix libentry,mlefix,,libw mdllcew,mlefix
  12.     rc mlefix.exe
  13.  
  14.