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.efi 339B

123456789101112131415161718
  1. # -*- makefile -*- : Force emacs to use Makefile mode
  2. # UEFI requires that enums are always 32 bits
  3. #
  4. CFLAGS += -fno-short-enums
  5. # Specify EFI image builder
  6. #
  7. ELF2EFI = $(ELF2EFI32)
  8. # Specify EFI boot file
  9. #
  10. EFI_BOOT_FILE = bootarm.efi
  11. # Include generic EFI Makefile
  12. #
  13. MAKEDEPS += arch/arm/Makefile.efi
  14. include arch/arm/Makefile.efi