home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / mweb / MWEB Utils / ws295sdk.exe / Ws2sdkzp.exe / SAMPLES / DT_DLL / SOURCES < prev    next >
Encoding:
Text File  |  1997-06-06  |  1.1 KB  |  55 lines

  1. !IF 0
  2.  
  3. Copyright (c) 1989-91  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     sources.
  8.  
  9. Abstract:
  10.  
  11.     This file specifies the target component being built and the list of
  12.     sources files needed to build that component.  Also specifies optional
  13.     compiler switches and libraries that are unique for the component being
  14.     built.
  15.  
  16.  
  17. Author:
  18.  
  19.     Steve Wood (stevewo) 12-Apr-1990
  20.  
  21. NOTE:   Commented description of this file is in \nt\public\oak\bin\sources.tpl
  22.  
  23.  
  24. !ENDIF
  25.  
  26. MAJORCOMP=sockets
  27. MINORCOMP=winsock2
  28.  
  29. TARGETNAME=dt_dll
  30. TARGETPATH=$(BASEDIR)\public\sdk\lib
  31. TARGETTYPE=DYNLINK
  32.  
  33. TARGETLIBS= \
  34.     $(BASEDIR)\public\sdk\lib\*\kernel32.lib    \
  35.     $(BASEDIR)\public\sdk\lib\*\user32.lib      \
  36.     $(BASEDIR)\public\sdk\lib\*\gdi32.lib       \
  37.     $(BASEDIR)\public\sdk\lib\*\comdlg32.lib    \
  38.     $(BASEDIR)\public\sdk\lib\*\ws2_32.lib      \
  39.  
  40. DLLENTRY=DllMain
  41. DLLBASE=0x54c00000
  42.  
  43. USE_CRTDLL=1
  44.  
  45. INCLUDES=..\include
  46.  
  47. MSC_WARNING_LEVEL=/W3 /WX
  48.  
  49. SOURCES= \
  50.         dt_dll.cpp      \
  51.         handlers.cpp    \
  52.         huerror.cpp     \
  53.         dt_dll.rc       \
  54.  
  55.