Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 2020/05/28 15:27:59 jmcneill Exp $ 2 3.include <bsd.own.mk> 4.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6.include <bsd.kernobj.mk> 7 8SUBDIR= gzboot instkernel 9.if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "earmv7hf" 10SUBDIR+= installimage 11.endif 12TARGETS+= release 13 14.if ${MACHINE_CPU} == "arm" 15BOOTOBJ!= cd ${KERNSRCDIR}/arch/evbarm/stand/boot2440 && ${PRINTOBJDIR} 16MDECBOOT= ${BOOTOBJ}/bootmini2440 17 18release: check_RELEASEDIR .WAIT ${MDECBOOT} 19 ${RELEASE_INSTALL} ${MDECBOOT} ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation 20.endif 21 22install_image: 23 ${MAKEDIRTARGET} installimage install_image 24 25.include <bsd.subdir.mk> 26