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.

124 lines
3.5 KiB

  1. #
  2. # Copyright (c) 1999, 2000
  3. # Intel Corporation.
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without modification,
  7. # are permitted provided that the following conditions are met:
  8. #
  9. # 1. Redistributions of source code must retain the above copyright notice,
  10. # this list of conditions and the following disclaimer.
  11. #
  12. # 2. Redistributions in binary form must reproduce the above copyright notice,
  13. # this list of conditions and the following disclaimer in the documentation
  14. # and/or other materials provided with the distribution.
  15. #
  16. # 3. All advertising materials mentioning features or use of this software must
  17. # display the following acknowledgement:
  18. #
  19. # This product includes software developed by Intel Corporation and its
  20. # contributors.
  21. #
  22. # 4. Neither the name of Intel Corporation or its contributors may be used to
  23. # endorse or promote products derived from this software without specific
  24. # prior written permission.
  25. #
  26. # THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION AND CONTRIBUTORS ``AS IS'' AND
  27. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  28. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  29. # DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR CONTRIBUTORS BE LIABLE FOR
  30. # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  31. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  32. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  33. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  35. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. #
  37. #
  38. # Include sdk.env environment
  39. #
  40. !include $(SDK_INSTALL_DIR)\build\$(SDK_BUILD_ENV)\sdk.env
  41. #
  42. # Set the base output name and entry point
  43. #
  44. BASE_NAME = mm
  45. IMAGE_ENTRY_POINT = DumpIoModify
  46. #
  47. # Globals needed by master.mak
  48. #
  49. TARGET_APP = $(BASE_NAME)
  50. SOURCE_DIR = $(SDK_INSTALL_DIR)\efishell\iomod
  51. BUILD_DIR = $(SDK_BUILD_DIR)\efishell\$(BASE_NAME)
  52. #
  53. # Include paths
  54. #
  55. !include $(SDK_INSTALL_DIR)\include\efishell\makefile.hdr
  56. INC = -I $(SDK_INSTALL_DIR)\include\efishell \
  57. -I $(SDK_INSTALL_DIR)\include\efishell\$(PROCESSOR) $(INC)
  58. !include $(SDK_INSTALL_DIR)\include\efi\makefile.hdr
  59. INC = -I $(SDK_INSTALL_DIR)\include\efi \
  60. -I $(SDK_INSTALL_DIR)\include\efi\$(PROCESSOR) $(INC)
  61. #
  62. # Include paths
  63. #
  64. !include $(SDK_INSTALL_DIR)\include\efishell\makefile.hdr
  65. INC = -I $(SDK_INSTALL_DIR)\include\efishell \
  66. -I $(SDK_INSTALL_DIR)\include\efishell\$(PROCESSOR) $(INC)
  67. !include $(SDK_INSTALL_DIR)\include\efi\makefile.hdr
  68. INC = -I $(SDK_INSTALL_DIR)\include\efi \
  69. -I $(SDK_INSTALL_DIR)\include\efi\$(PROCESSOR) $(INC)
  70. !include ..\shellenv\makefile.hdr
  71. INC = -I ..\shellenv $(INC)
  72. #
  73. # Libraries
  74. #
  75. LIBS = $(LIBS) $(SDK_BUILD_DIR)\lib\libefi\libefi.lib
  76. LIBS = $(LIBS) $(SDK_BUILD_DIR)\lib\libefishell\libefishell.lib
  77. #
  78. # Main targets
  79. #
  80. all : dirs debug $(LIBS) $(OBJECTS)
  81. debug:
  82. cd ../debug
  83. nmake -f debug.mak all
  84. cd $(SOURCE_DIR)
  85. #
  86. # Program object files
  87. #
  88. OBJECTS = $(OBJECTS) \
  89. $(BUILD_DIR)\iomod.obj \
  90. $(BUILD_DIR)\..\dblk\efidump.obj \
  91. #
  92. # Source file dependencies
  93. #
  94. $(BUILD_DIR)\iomod.obj : $(*B).c $(INC_DEPS)
  95. $(BUILD_DIR)\..\dblk\efidump.obj : ..\debug\$(*B).c $(INC_DEPS)
  96. #
  97. # Handoff to master.mak
  98. #
  99. !include $(SDK_INSTALL_DIR)\build\master.mak