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.

107 lines
2.2 KiB

  1. !IF 0
  2. Copyright (c) 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-1990
  12. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  13. !ENDIF
  14. TARGETNAME=boot
  15. TARGETPATH=obj
  16. TARGETTYPE=LIBRARY
  17. BUILD_PRODUCES=BOOTLIB$(BUILD_DEBUG_LOADER)
  18. !IF "$(BUILD_DEBUG_LOADER)" != ""
  19. !include $(PROJECT_ROOT)\boot\loader_dbg.inc
  20. !ELSE
  21. !include $(PROJECT_ROOT)\boot\loader.inc
  22. !ENDIF
  23. INCLUDES= \
  24. $(SDK_INC_PATH);\
  25. $(PROJECT_ROOT)\boot\inc;\
  26. $(DS_INC_PATH);\
  27. $(DS_INC_PATH)\crypto;\
  28. $(PROJECT_ROOT)\hals;\
  29. $(PROJECT_ROOT)\hals\inc;\
  30. $(PROJECT_ROOT)\ntos\inc;\
  31. $(PROJECT_ROOT)\fs\fastfat;\
  32. $(PROJECT_ROOT)\fs\cdfs;\
  33. $(PROJECT_ROOT)\fs\udfs;\
  34. $(PROJECT_ROOT)\fs\ntfs;\
  35. $(PROJECT_ROOT)\ntos\config;\
  36. ..\$(TARGET_DIRECTORY);\
  37. $(DDK_INC_PATH);\
  38. $(HALKIT_INC_PATH);
  39. !IF $(386)
  40. INCLUDES = $(INCLUDES);$(PROJECT_ROOT)\tools\bldrthnk
  41. !ENDIF
  42. !IF 0
  43. NOTE : To force CD/DVD boot while starting setupldr from harddisk use
  44. FORCE_CD_BOOT
  45. C_DEFINES=$(C_DEFINES) -DFORCE_CD_BOOT
  46. !ENDIF
  47. MSC_WARNING_LEVEL=/W4 /WX
  48. SOURCES=..\arcdisk.c \
  49. ..\blmemory.c \
  50. ..\blbind.c \
  51. ..\blconfig.c \
  52. ..\blgpt.c \
  53. ..\blio.c \
  54. ..\blload.c \
  55. ..\blres.c \
  56. ..\debug.c \
  57. ..\etfsboot.c \
  58. ..\fatboot.c \
  59. ..\ntfsboot.c \
  60. ..\cdfsboot.c \
  61. ..\udfsboot.c \
  62. ..\netboot.c \
  63. ..\nlsboot.c \
  64. ..\parseini.c \
  65. ..\hdlsterm.c \
  66. ..\peldr.c \
  67. ..\bllog.c \
  68. ..\blmisc.c \
  69. ..\blcache.c \
  70. ..\blrange.c \
  71. ..\vmode.c \
  72. ..\vga.c \
  73. ..\blsecret.c \
  74. ..\blstring.c \
  75. ..\ramdisk.c
  76. !IF $(386)
  77. !IF exist(..\amd64\amd64.c)
  78. C_DEFINES=$(C_DEFINES) -D_X86AMD64_
  79. ASM_DEFINES=$(ASM_DEFINES) -D_X86AMD64_
  80. NTTARGETFILE0=amd64thk
  81. !ENDIF
  82. !ENDIF