home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_12 / 2n12013b < prev    next >
Encoding:
Text File  |  1995-11-01  |  431 b   |  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.