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.

60 lines
1.3 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=CheckSC
  16. TARGETNAME=CheckSC
  17. TARGETPATH=$(SECURITY_LIB_DEST)
  18. TARGETTYPE=PROGRAM
  19. TARGETLIBS=\
  20. $(SECURITY_LIB_PATH)\Calaislb.lib \
  21. $(SDK_LIB_PATH)\winscard.lib \
  22. $(SDK_LIB_PATH)\scarddlg.lib \
  23. $(SDK_LIB_PATH)\crypt32.lib \
  24. $(SDK_LIB_PATH)\cryptui.lib \
  25. $(SDK_LIB_PATH)\wintrust.lib \
  26. !ifdef _DEBUG
  27. $(SDK_LIB_PATH)\msvcirtd.lib \
  28. !else
  29. $(SDK_LIB_PATH)\msvcirt.lib \
  30. !endif
  31. $(SDK_LIB_PATH)\User32.lib
  32. INCLUDES=\
  33. ..\..\inc;..\..\server\inc; \
  34. $(PROJECT_ROOT)\security\cryptoapi\include; $(DS_INC_PATH);
  35. SOURCES= CheckSC.cpp
  36. # Make it a console application
  37. UMTYPE=console
  38. UMENTRY=main
  39. # Use C++ Exception Handling
  40. USE_NATIVE_EH=1
  41. USE_IOSTREAM=1