home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SEE4C10.ZIP / MULTI32._M_ < prev    next >
Text File  |  1998-05-15  |  395b  |  19 lines

  1. #
  2. # Microsoft makefile for MULTI [Win32]
  3. # Requires SEE32.DLL & SEE32.LIB
  4. #
  5. # To use: "nmake multi_32._m_"
  6. #
  7.  
  8. !include <win32.mak>
  9.  
  10. CCFLAGS = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  11.  
  12. multi.exe: multi.obj see32.lib
  13.   link $(conlflags) multi.obj -out:multi.exe $(conlibs) see32.lib user32.lib kernel32.lib user32.lib 
  14.  
  15. multi.obj: multi.c see.h
  16.    cl $(cflags) $(cvars) multi.c
  17.  
  18.  
  19.