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.

44 lines
902 B

  1. # ############################################################
  2. #
  3. #Copyright (c) 2001 Microsoft Corporation
  4. #
  5. #
  6. #Date:
  7. # 2-Feb-2000
  8. #
  9. #Module Name:
  10. # sources.inc
  11. #
  12. #Abstract:
  13. # This file specifies the target component being built and the list of
  14. # sources files needed to build that component. Also specifies optional
  15. # compiler switches and libraries that are unique for the component being
  16. # built.
  17. #
  18. # This directory builds
  19. # StillImage kernel mode driver
  20. #
  21. # ############################################################
  22. !if "$(DDK_TARGET_OS)" == "WinNET"
  23. #
  24. # build ansi always for now
  25. #
  26. NOT_UNICODE=1
  27. TARGETNAME=usbscn9x
  28. TARGETTYPE=DRIVER
  29. TARGETPATH=$(_OBJ_DIR)
  30. TARGETLIBS=$(DDK_LIB_PATH)\usbd.lib
  31. SOURCES= usbscn9x.c \
  32. ocrw.c \
  33. ioctl.c \
  34. power.c \
  35. usbscn9x.rc \
  36. debug.c
  37. !endif