blob: 26b7127803aca889fdb8613468b9497b7e7a6936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- makefile -*- : Force emacs to use Makefile mode
# EFI probably doesn't guarantee us a red zone, so let's not rely on it.
#
CFLAGS += -mno-red-zone
# Specify EFI image builder
#
ELF2EFI = $(ELF2EFI64)
# Include generic EFI Makefile
#
MAKEDEPS += arch/x86/Makefile.efi
include arch/x86/Makefile.efi
|