goal: mmpf.exe

.c.obj:
    cl -c -W2 -AS -G2sw -Zip -Od $*.c

.asm.obj:
   masm -Mx -Zi $*;

mmpf.obj: mmpf.c mmpf.h mmpfdlg.h dlgopen.h

mmpf.res: mmpf.rc mmpf.ico mmpf.h mmpfdlg.dlg mmpfdlg.h dlgopen.dlg
        rc -r mmpf.rc

mmpf.exe: mmpf.obj lstr.obj mmpf.def mmpf.res
        link /NOE/MAP/NOD/CO mmpf lstr,,,libw slibcew dlgopen, mmpf.def
        rc mmpf.res

clean:
    del *.exe
    del *.obj
    del *.map
    del *.sym
    del *.res


