Makefile revision 1.2
11.2Sjmcneill# $NetBSD: Makefile,v 1.2 2012/01/06 13:16:20 jmcneill Exp $ 21.1Sjmcneill 31.1SjmcneillNETBSDSRCDIR?= ../../../../.. 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.2Sjmcneill.else 171.2Sjmcneill.error ${MACHINE_ARCH} not implemented 181.2Sjmcneill.endif 191.1Sjmcneill 201.1Sjmcneill.include <bsd.kmodule.mk> 21