Makefile revision 1.5
11.5Sjmcneill# $NetBSD: Makefile,v 1.5 2013/11/10 22:08:58 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.5Sjmcneill.if ${MACHINE_CPU} == "i386" || ${MACHINE_CPU} == "x86_64" 151.2SjmcneillSRCS+= syscallemu_x86.c 161.5Sjmcneill.elif ${MACHINE_CPU} == "arm" 171.4SjmcneillSRCS+= syscallemu_arm.c 181.2Sjmcneill.else 191.5Sjmcneill.error ${MACHINE_CPU} not implemented 201.2Sjmcneill.endif 211.1Sjmcneill 221.1Sjmcneill.include <bsd.kmodule.mk> 23