Makefile revision 1.8
11.8Sjmcneill# $NetBSD: Makefile,v 1.8 2021/10/06 10:15:20 jmcneill Exp $ 21.1Sjmcneill 31.1SjmcneillPROG= bootarm.efi 41.1SjmcneillOBJFMT= binary 51.4SjmcneillNEWVERSWHAT= "efiboot (arm)" 61.1SjmcneillGNUEFIARCH= arm 71.1SjmcneillLIBGNUEFI_ARCH= arm 81.7SjmcneillOBJCOPY_FORMAT= -O binary 91.1Sjmcneill 101.8SjmcneillEFIBOOT_FDT= yes 111.8Sjmcneill 121.1SjmcneillEXTRA_SOURCES= efibootarm.c 131.1SjmcneillEXTRA_SOURCES+= cache.S 141.1Sjmcneill 151.6SjmcneillCOPTS+= -mfloat-abi=soft -mno-unaligned-access -mlittle-endian 161.6SjmcneillCOPTS+= -ffreestanding -fno-unwind-tables 171.6SjmcneillAFLAGS+= -mlittle-endian 181.1SjmcneillCFLAGS+= -DEFIBOOT_ALIGN=0x1000000 191.5SjmcneillCFLAGS+= -DEFIBOOT_MODULE_MACHINE=\"evbarm\" 201.6SjmcneillLDFLAGS+= -N -EL 211.1Sjmcneill 221.1Sjmcneill.include "${.CURDIR}/../Makefile.efiboot" 231.1Sjmcneill 241.1Sjmcneillrelease: check_RELEASEDIR 251.1Sjmcneill ${HOST_INSTALL_FILE} -m ${BINMODE} ${PROG} \ 261.2Schristos ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc 27