1# $FreeBSD$ 2 3.include <bsd.init.mk> 4 5LIB= efi 6WARNS?= 2 7 8SRCS= delay.c \ 9 devicename.c \ 10 devpath.c \ 11 efi_console.c \ 12 efi_driver_utils.c \ 13 efichar.c \ 14 efienv.c \ 15 efihttp.c \ 16 efinet.c \ 17 efipart.c \ 18 efizfs.c \ 19 env.c \ 20 errno.c \ 21 handles.c \ 22 libefi.c \ 23 wchar.c 24 25.PATH: ${SYSDIR}/teken 26SRCS+= teken.c 27 28.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" 29SRCS+= time.c 30.elif ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm" || \ 31 ${MACHINE_CPUARCH} == "riscv" 32SRCS+= time_event.c 33.endif 34 35# We implement a slightly non-standard %S in that it always takes a 36# CHAR16 that's common in UEFI-land instead of a wchar_t. This only 37# seems to matter on arm64 where wchar_t defaults to an int instead 38# of a short. There's no good cast to use here so just ignore the 39# warnings for now. 40CWARNFLAGS.efinet.c+= -Wno-format 41CWARNFLAGS.efipart.c+= -Wno-format 42CWARNFLAGS.env.c+= -Wno-format 43 44.if ${MACHINE_CPUARCH} == "aarch64" 45CFLAGS+= -mgeneral-regs-only 46.endif 47.if ${MACHINE_ARCH} == "amd64" 48CFLAGS+= -fPIC -mno-red-zone 49.endif 50CFLAGS+= -I${EFIINC} 51CFLAGS+= -I${EFIINCMD} 52CFLAGS.efi_console.c+= -I${SRCTOP}/sys/teken -I${SRCTOP}/contrib/pnglite 53CFLAGS.efi_console.c+= -I${.CURDIR}/../loader 54CFLAGS.teken.c+= -I${SRCTOP}/sys/teken 55.if ${MK_LOADER_ZFS} != "no" 56CFLAGS+= -I${ZFSSRC} 57CFLAGS+= -I${SYSDIR}/cddl/boot/zfs 58CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/common 59CFLAGS+= -DEFI_ZFS_BOOT 60.endif 61 62# Pick up the bootstrap header for some interface items 63CFLAGS+= -I${LDRSRC} 64 65# Handle FreeBSD specific %b and %D printf format specifiers 66CFLAGS+= ${FORMAT_EXTENSIONS} 67 68CFLAGS+= -DTERM_EMU 69 70.include <bsd.lib.mk> 71