Source code of Windows XP (NT5)
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.

84 lines
2.1 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  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-1989
  12. Revision History:
  13. !ENDIF
  14. #
  15. # The MAJORCOMP and MINORCOMP variables are defined
  16. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  17. # cross compiling to provide unique filenames in a flat namespace.
  18. #
  19. MAJORCOMP=windows
  20. MINORCOMP=drvsetup
  21. #
  22. # The TARGETNAME variable is defined by the developer. It is the name of
  23. # the target (component) that is being built by this makefile. It
  24. # should NOT include any path or file extension information.
  25. #
  26. TARGETNAME=upg
  27. TARGETPATH=obj
  28. TARGETTYPE=PROGRAM
  29. TARGETLIBS=$(SDK_LIB_PATH)\setupapi.lib \
  30. $(SDK_LIB_PATH)\cfgmgr32.lib \
  31. $(PROJECT_ROOT)\print\spooler\splsetup\base\$(O)\ntprint.lib
  32. #
  33. # The INCLUDES variable specifies any include paths that are specific to
  34. # this source directory. Separate multiple directory paths with single
  35. # semicolons. Relative path specifications are okay.
  36. #
  37. INCLUDES=.;..
  38. #
  39. # The SOURCES variable is defined by the developer. It is a list of all the
  40. # source files for this component. Each source file should be on a separate
  41. # line using the line continuation character. This will minimize merge
  42. # conflicts if two developers adding source files to the same component.
  43. #
  44. SOURCES=$(TARGETNAME).c
  45. UMTYPE=console
  46. UMTEST=
  47. UMLIBS=
  48. #
  49. # Defining either (or both) the variables NTTARGETFILE0 and/or NTTARGETFILES
  50. # will cause MAKEFILE.DEF to include .\makefile.inc immediately after it
  51. # specifies the level targets (all, clean and loc) and their dependencies.
  52. # MAKEFILE.DEF also expands NTTARGETFILE0 as the first dependent for the
  53. # "all" target and NTTARGETFILES as the last dependent for the "all" target.
  54. # Useful for specifying additional targets and dependencies that don't fit the
  55. # general case covered by MAKEFILE.DEF
  56. #
  57. # NTTARGETFILE0=
  58. # NTTARGETFILES=
  59. C_DEFINES=-DUNICODE -D_UNICODE