freebsd-dev/sys/boot/efi/libefi/Makefile
Marcel Moolenaar f3beed66fa o Introduce efimd_va2pa() to translate addresses in efi_copy{in|out}()
and efi_readin(). This removes MD code from copy.c.
o  Don't unconditionally add pal.S to SRCS. It's specific to ia64.
2004-11-28 00:30:22 +00:00

28 lines
616 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../../${MACHINE_ARCH}/${MACHINE_ARCH}
LIB= efi
INTERNALLIB=
SRCS= bootinfo.c copy.c delay.c devicename.c efi_console.c efifs.c efinet.c \
elf_freebsd.c libefi.c module.c time.c
.if ${MACHINE_ARCH} == "ia64"
SRCS+= efifpswa.c pal.S
.endif
CFLAGS+= -I${.CURDIR}/../include
CFLAGS+= -I${.CURDIR}/../include/${MACHINE_ARCH}
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand
# Pick up the bootstrap header for some interface items
CFLAGS+= -I${.CURDIR}/../../common
# Make the disk code more talkative
.if defined(BOOT_DISK_DEBUG)
CFLAGS+= -DDISK_DEBUG
.endif
.include <bsd.lib.mk>