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.

105 lines
2.8 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=splsetup
  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. BINPLACE_PLACEFILE=placefil.txt
  27. TARGETNAME=migrate
  28. TARGETPATH=obj
  29. TARGETTYPE=DYNLINK
  30. NTTARGETFILE0= $(O)\msg.mc
  31. TARGETLIBS=$(SDK_LIB_PATH)\advapi32.lib \
  32. $(SDK_LIB_PATH)\kernel32.lib \
  33. $(SDK_LIB_PATH)\msvcrt.lib \
  34. $(SDK_LIB_PATH)\setupapi.lib \
  35. $(SDK_LIB_PATH)\shell32.lib \
  36. $(SDK_LIB_PATH)\user32.lib \
  37. $(SDK_LIB_PATH)\winspool.lib
  38. DLLDEF=migrate.def
  39. DLLENTRY=_DllMainCRTStartup
  40. DLLBASE=0x0D000000
  41. USE_MSVCRT=1
  42. BUFFER_OVERFLOW_CHECKS=1
  43. #
  44. # The INCLUDES variable specifies any include paths that are specific to
  45. # this source directory. Separate multiple directory paths with single
  46. # semicolons. Relative path specifications are okay.
  47. #
  48. INCLUDES=$(BASE_INC_PATH);.
  49. #
  50. # The SOURCES variable is defined by the developer. It is a list of all the
  51. # source files for this component. Each source file should be on a separate
  52. # line using the line continuation character. This will minimize merge
  53. # conflicts if two developers adding source files to the same component.
  54. #
  55. SOURCES= msg.mc \
  56. fileio.c \
  57. fileq.c \
  58. nt.c \
  59. migmain.c \
  60. migrate.rc \
  61. network.c \
  62. util.c \
  63. win9x.c
  64. UMTYPE=console
  65. UMLIBS=$(O)\migprint.lib
  66. #
  67. # Defining either (or both) the variables NTTARGETFILE0 and/or NTTARGETFILES
  68. # will cause MAKEFILE.DEF to include .\makefile.inc immediately after it
  69. # specifies the level targets (all, clean and loc) and their dependencies.
  70. # MAKEFILE.DEF also expands NTTARGETFILE0 as the first dependent for the
  71. # "all" target and NTTARGETFILES as the last dependent for the "all" target.
  72. # Useful for specifying additional targets and dependencies that don't fit the
  73. # general case covered by MAKEFILE.DEF
  74. #
  75. # NTTARGETFILE0=
  76. # NTTARGETFILES=
  77. C_DEFINES=-DVERBOSE -DDBG