home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_04 / 3n04051a < prev    next >
Text File  |  1992-02-11  |  652b  |  18 lines

  1. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=Begin Listing3-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  2. #######################################################
  3. ## makefile                                          ##
  4. ## -- Project file for mlefix program.               ##
  5. #######################################################
  6. all:    mlefix.exe
  7.  
  8. mlefix.obj:    mlefix.c
  9.     cl -c -AMw -Gsw -Os -Zdpe -W3 mlefix.c
  10.  
  11. mlestub.obj:    mlestub.asm
  12.     masm -v -ML -Mx mlestub.asm;
  13.  
  14. mlefix.exe:    mlefix.obj mlestub.obj mlefix.def
  15.     link /m mlefix mlestub libentry,mlefix,,libw mdllcew,mlefix
  16.     rc mlefix.exe
  17. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=End Listing3-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  18.