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.

79 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 target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1990
  12. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  13. !ENDIF
  14. MAJORCOMP=Calais
  15. MINORCOMP=scardssp
  16. TARGETNAME=$(MINORCOMP)
  17. TARGETPATH=obj
  18. TARGETTYPE=DYNLINK
  19. DLLDEF=$(MINORCOMP).def
  20. DLLENTRY=_DllMainCRTStartup
  21. TARGETLIBS=\
  22. $(SECURITY_LIB_PATH)\CalaisLb.lib \
  23. $(SDK_LIB_PATH)\winscard.lib \
  24. $(SDK_LIB_PATH)\SCardDlg.lib \
  25. $(SDK_LIB_PATH)\version.lib \
  26. $(SDK_LIB_PATH)\uuid.lib \
  27. $(SDK_LIB_PATH)\ole32.lib \
  28. $(SDK_LIB_PATH)\oleaut32.lib \
  29. $(SDK_LIB_PATH)\comctl32.lib \
  30. $(SDK_LIB_PATH)\comdlg32.lib \
  31. $(SDK_LIB_PATH)\winspool.lib \
  32. $(SDK_LIB_PATH)\shell32.lib \
  33. $(SDK_LIB_PATH)\rpcns4.lib \
  34. $(SDK_LIB_PATH)\rpcrt4.lib \
  35. $(WIN32_LIBS) \
  36. $(GUI32_LIBS)
  37. INCLUDES=..\inc;..\inc\$(O);..\..\inc;
  38. SOURCES= \
  39. $(MINORCOMP).cpp \
  40. $(MINORCOMP).rc \
  41. ByteBuffer.cpp \
  42. Conversion.cpp \
  43. Database.cpp \
  44. dlldatax.c \
  45. ISO7816.cpp \
  46. Locate.cpp \
  47. Proto_T0.cpp \
  48. Proto_T1.cpp \
  49. SCard.cpp \
  50. SCardCmd.cpp \
  51. StdAfx.cpp \
  52. TypeConv.cpp
  53. # Additional Compiler definitions
  54. C_DEFINES=$(C_DEFINES) -D_WINDOWS -D_USRDLL -D_STRICT -D_MERGE_PROXYSTUB -DCOM_NO_WINDOWS_H -DSCARD_NO_COM
  55. # Use C++ Exception Handling
  56. USE_NATIVE_EH=1
  57. USE_MSVCRT=1
  58. # Use ATL
  59. USE_ATL=1