Makefile revision 1.5
11.5Sjmcneill# $NetBSD: Makefile,v 1.5 2018/10/28 10:17:47 jmcneill Exp $ 21.1Sjmcneill 31.1SjmcneillPROG= bootaa64.efi 41.1SjmcneillOBJFMT= binary 51.1SjmcneillNEWVERSWHAT= "EFI Boot (aarch64)" 61.1Sjmcneill 71.1SjmcneillEXTRA_SOURCES= efibootaa64.c 81.1SjmcneillEXTRA_SOURCES+= cache.S 91.1Sjmcneill 101.1SjmcneillCOPTS+= -mgeneral-regs-only -fno-jump-tables 111.1SjmcneillCFLAGS+= -DEFIBOOT_ALIGN=0x200000 121.5SjmcneillCFLAGS+= -DEFIBOOT_RUNTIME_ADDRESS=0xffff800000000000L 131.5SjmcneillCFLAGS+= -DEFIBOOT_RUNTIME_SIZE=0x40000000UL 141.4SjmcneillCFLAGS+= -DEFIBOOT_ACPI 151.1Sjmcneill 161.1Sjmcneill.include "${.CURDIR}/../Makefile.efiboot" 171.1Sjmcneill 181.2Sjmcneillrelease: check_RELEASEDIR 191.2Sjmcneill ${HOST_INSTALL_FILE} -m ${BINMODE} ${PROG} \ 201.2Sjmcneill ${RELEASEDIR}/${MACHINE}/installation/misc 21