home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / mlocal.zip / MLTEST < prev    next >
Text File  |  1991-03-16  |  536b  |  23 lines

  1. # compilation flags
  2. CFLAGS=-AM -c -Gsw -Od -W2 -Zip
  3.  
  4. # mltest
  5. mltest.res: mltest.rc MLApp.ico MLMDI.ICO mltest.h 
  6.    rc -r mltest.rc
  7.  
  8. mlocal.obj: mlocal.asm
  9.    masm -Zi mlocal.asm;
  10.  
  11. listmgr.obj: listmgr.asm
  12.    masm -Zi listmgr.asm;   
  13.  
  14. mltest.obj: mltest.c mltest.h mlocal.h listmgr.h
  15.    cl $(CFLAGS) mltest.c
  16.  
  17. mltest.exe: mltest.obj mlocal.obj mltest.def listmgr.obj
  18.    link mltest+mlocal.obj+listmgr.obj,mltest/CO/ALIGN:16,mltest,libw+mlibcew/NOD,mltest
  19.    rc mltest.res
  20.  
  21. mltest.exe: mltest.res
  22.    rc mltest.res
  23.