mirror of
https://github.com/ipxe/ipxe
synced 2026-02-12 09:59:51 +03:00
Reduce duplication between i386 and x86_64 by providing a single shared linker script that both architectures can include. Signed-off-by: Michael Brown <mcb30@ipxe.org>
15 lines
288 B
Makefile
15 lines
288 B
Makefile
# -*- makefile -*- : Force emacs to use Makefile mode
|
|
|
|
# Starting virtual address
|
|
#
|
|
LDFLAGS += -Ttext=0x08048000
|
|
|
|
# Compiler flags for building host API wrapper
|
|
#
|
|
LINUX_CFLAGS += -m32
|
|
|
|
# Include generic Linux Makefile
|
|
#
|
|
MAKEDEPS += arch/x86/Makefile.linux
|
|
include arch/x86/Makefile.linux
|