Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
720 B

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <ntwin32.mak>
  3. ldebug=
  4. #ldebug= -DEBUG:full -DEBUGTYPE:both
  5. # *** Connect Next line for WIN95 and uncomment for Windows NT
  6. # crtdll = crtdll.lib
  7. # This line allows NMAKE to work as well
  8. all: wsock32.dll
  9. wsock32.dll: wsock32.obj wsock32.def wsock32.rbj
  10. lib -machine:$(CPU) -def:wsock32.def -out:wsock32.lib
  11. link $(ldebug) -dll -entry:Win32LibMain$(DLLENTRY) -out:wsock32.dll wsock32.obj wsock32.exp wsock32.rbj $(guilibsdll) advapi32.lib mpr.lib
  12. wsock32.obj: wsock32.c
  13. $(cc) $(cdebug) $(cflags) $(cvarsdll) -MD wsock32.c
  14. wsock32.rbj: wsock32.rc
  15. rc -r $(rcvars) -fo wsock32.res wsock32.rc
  16. cvtres -$(CPU) wsock32.res -o wsock32.rbj