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.

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=win9x
  27. TARGETPATH=obj
  28. TARGETTYPE=PROGRAM
  29. TARGETLIBS=$(SDK_LIB_PATH)\user32.lib
  30. #
  31. # The INCLUDES variable specifies any include paths that are specific to
  32. # this source directory. Separate multiple directory paths with single
  33. # semicolons. Relative path specifications are okay.
  34. #
  35. INCLUDES=$(ADMIN_INC_PATH);$(BASE_INC_PATH);.
  36. #
  37. # The SOURCES variable is defined by the developer. It is a list of all the
  38. # source files for this component. Each source file should be on a separate
  39. # line using the line continuation character. This will minimize merge
  40. # conflicts if two developers adding source files to the same component.
  41. #
  42. SOURCES=$(TARGETNAME).c
  43. UMTYPE=console
  44. UMTEST=
  45. UMLIBS=
  46. #
  47. # Defining either (or both) the variables NTTARGETFILE0 and/or NTTARGETFILES
  48. # will cause MAKEFILE.DEF to include .\makefile.inc immediately after it
  49. # specifies the level targets (all, clean and loc) and their dependencies.
  50. # MAKEFILE.DEF also expands NTTARGETFILE0 as the first dependent for the
  51. # "all" target and NTTARGETFILES as the last dependent for the "all" target.
  52. # Useful for specifying additional targets and dependencies that don't fit the
  53. # general case covered by MAKEFILE.DEF
  54. #
  55. # NTTARGETFILE0=
  56. # NTTARGETFILES=
  57. C_DEFINES=#-DUNICODE
  58. BUFFER_OVERFLOW_CHECKS=1