home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / m / mmpf.zip / MAKEFILE < prev    next >
Text File  |  1991-09-10  |  473b  |  26 lines

  1. goal: mmpf.exe
  2.  
  3. .c.obj:
  4.     cl -c -W2 -AS -G2sw -Zip -Od $*.c
  5.  
  6. .asm.obj:
  7.    masm -Mx -Zi $*;
  8.  
  9. mmpf.obj: mmpf.c mmpf.h mmpfdlg.h dlgopen.h
  10.  
  11. mmpf.res: mmpf.rc mmpf.ico mmpf.h mmpfdlg.dlg mmpfdlg.h dlgopen.dlg
  12.         rc -r mmpf.rc
  13.  
  14. mmpf.exe: mmpf.obj lstr.obj mmpf.def mmpf.res
  15.         link /NOE/MAP/NOD/CO mmpf lstr,,,libw slibcew dlgopen, mmpf.def
  16.         rc mmpf.res
  17.  
  18. clean:
  19.     del *.exe
  20.     del *.obj
  21.     del *.map
  22.     del *.sym
  23.     del *.res
  24.  
  25.  
  26.