home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / SMF.ZIP / SMF < prev    next >
Text File  |  1990-05-21  |  444b  |  23 lines

  1. # base make file
  2.  
  3. cp=cl -c -G2s -AL -W3 -Zi -B1 c1l.exe
  4.  
  5. smf.obj: smf smf.c smf.h
  6.     $(cp) smf.c
  7.  
  8. metwnd.obj : metwnd.c smf.h
  9.     $(cp) metwnd.c
  10.  
  11. allwnd.obj : allwnd.c smf.h
  12.     $(cp) allwnd.c
  13.  
  14. fatwnd.obj : fatwnd.c smf.h
  15.     $(cp) fatwnd.c
  16.  
  17. smf.res : smf.h smf.rc
  18.     rc -r smf.rc
  19.  
  20. smf.exe : metwnd.obj allwnd.obj fatwnd.obj smf.obj smf.res
  21.     link smf metwnd allwnd fatwnd, /CO /align:16, NUL, os2, smf
  22.     rc smf.res
  23.