home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_sdk / select / select < prev   
Encoding:
Text File  |  1990-06-01  |  332 b   |  15 lines

  1. all: select.dll
  2.  
  3. select.obj: select.c select.h
  4.     cl -c -Asnw -Gsw -Oas -Zpe select.c
  5.  
  6. libentry.obj: libentry.asm
  7.     masm -Mx libentry,libentry;
  8.  
  9. select.dll: libentry.obj select.obj select.def
  10.     link /NOD select libentry, select.dll,, libw sdllcew, select.def
  11.     rc select.dll
  12.     implib select.lib select.def
  13.  
  14. 
  15.