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.

88 lines
1.8 KiB

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 1989 - 1999
  3. Module Name:
  4. sources
  5. Abstract:
  6. This file specifies the SCardDlg.DLL (Smartcard common dialog) component
  7. being built and the list of sources files needed to build this DLL.
  8. Also, specifies optional compiler switches and libraries that are
  9. unique for this DLL being built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1990
  12. Modified:
  13. Chris Dudley 3-17-1997
  14. Notes:
  15. Commented description of this file is in \nt\bak\bin\sources.tpl
  16. !ENDIF
  17. MAJORCOMP=Calais
  18. MINORCOMP=SCardDlg
  19. TARGETNAME=$(MINORCOMP)
  20. TARGETPATH=obj
  21. TARGETTYPE=DYNLINK
  22. DLLDEF=$(O)\$(MINORCOMP).def
  23. DLLENTRY=_DllMainCRTStartup
  24. TARGETLIBS=\
  25. $(SECURITY_LIB_PATH)\CalaislbW.lib \
  26. $(SDK_LIB_PATH)\winscard.lib \
  27. $(SDK_LIB_PATH)\comctl32.lib \
  28. $(SDK_LIB_PATH)\comdlg32.lib \
  29. $(SDK_LIB_PATH)\winspool.lib \
  30. $(SDK_LIB_PATH)\shell32.lib \
  31. $(SDK_LIB_PATH)\wsock32.lib \
  32. $(SDK_LIB_PATH)\advapi32.lib \
  33. $(SDK_LIB_PATH)\user32.lib \
  34. $(SDK_LIB_PATH)\kernel32.lib
  35. INCLUDES= \
  36. ..;$(O); \
  37. ..\..\inc;
  38. PASS0_HEADERDIR=$(O)
  39. PASS0_SOURCEDIR=$(O)
  40. SOURCES= \
  41. sclmsg.mc \
  42. stdafx.cpp \
  43. ..\statmon.cpp \
  44. scsearch.cpp \
  45. scarddlg.rc \
  46. scarddlg.cpp \
  47. scinsdlg.cpp \
  48. scinsbar.cpp \
  49. chngpdlg.cpp
  50. C_DEFINES= -D_WINDOWS -D_USRDLL -D_AFXDLL -D_UNICODE
  51. # Use C++ Exception Handling
  52. USE_NATIVE_EH=1
  53. # Use MFC, without or with UNICODE
  54. USE_MFCUNICODE=1
  55. USE_ATL=1
  56. # Make sure we are building a multi-threaded DLL
  57. !IF "$(NTDEBUG)" == "retail" || "$(NTDEBUG)" == "" || "$(NTDEBUG)" == "ntsdnodbg"
  58. #...release
  59. CFLAGS=$(CFLAGS) /MT
  60. !ELSE
  61. #...debug
  62. CFLAGS=$(CFLAGS) /MTd
  63. !ENDIF
  64. PASS1_PUBLISH={$(O)\$(TARGETNAME).lib=$(SDK_LIB_PATH)\$(TARGETNAME).lib}