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.

Makefile 915B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Assembler section type character
  2. #
  3. ASM_TCHAR := @
  4. ASM_TCHAR_OPS := @
  5. # Include common x86 headers
  6. #
  7. INCDIRS += arch/x86/include
  8. # x86-specific directories containing source files
  9. #
  10. SRCDIRS += arch/x86/core
  11. SRCDIRS += arch/x86/image
  12. SRCDIRS += arch/x86/interface/pcbios
  13. SRCDIRS += arch/x86/interface/pxe
  14. SRCDIRS += arch/x86/interface/pxeparent
  15. SRCDIRS += arch/x86/interface/efi
  16. SRCDIRS += arch/x86/interface/vmware
  17. SRCDIRS += arch/x86/interface/syslinux
  18. SRCDIRS += arch/x86/prefix
  19. SRCDIRS += arch/x86/hci/commands
  20. SRCDIRS += arch/x86/drivers/xen
  21. SRCDIRS += arch/x86/drivers/hyperv
  22. SRCDIRS += arch/x86/transitions
  23. # breaks building some of the linux-related objects
  24. CFLAGS += -Ulinux
  25. # disable valgrind
  26. CFLAGS += -DNVALGRIND
  27. # Define version string for lkrnprefix.S
  28. #
  29. CFLAGS_lkrnprefix += -DVERSION="\"$(VERSION)\""
  30. # Include Hyper-V driver in the all-drivers build
  31. #
  32. DRIVERS_hyperv += hyperv