Makefile revision 1.4
11.4Sjmcneill# $NetBSD: Makefile,v 1.4 2013/11/10 19:58:38 jmcneill Exp $ 21.1Sjmcneill 31.3Schristos.include <bsd.own.mk> 41.1Sjmcneill 51.1SjmcneillS?= ${NETBSDSRCDIR}/sys 61.1SjmcneillM?= ${S}/modules 71.1Sjmcneill 81.1Sjmcneill.include "${M}/Makefile.inc" 91.1Sjmcneill.include "${M}/Makefile.assym" 101.1Sjmcneill 111.1SjmcneillKMOD= syscallemu 121.1Sjmcneill 131.1SjmcneillSRCS= syscallemu.c 141.2Sjmcneill.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" 151.2SjmcneillSRCS+= syscallemu_x86.c 161.4Sjmcneill.elif ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" 171.4SjmcneillSRCS+= syscallemu_arm.c 181.2Sjmcneill.else 191.2Sjmcneill.error ${MACHINE_ARCH} not implemented 201.2Sjmcneill.endif 211.1Sjmcneill 221.1Sjmcneill.include <bsd.kmodule.mk> 23