Home | History | Annotate | Line # | Download | only in syscallemu
Makefile revision 1.3
      1 #	$NetBSD: Makefile,v 1.3 2012/07/03 21:07:41 christos Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 S?=	${NETBSDSRCDIR}/sys
      6 M?=	${S}/modules
      7 
      8 .include "${M}/Makefile.inc"
      9 .include "${M}/Makefile.assym"
     10 
     11 KMOD=	syscallemu
     12 
     13 SRCS=	syscallemu.c
     14 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
     15 SRCS+=	syscallemu_x86.c
     16 .else
     17 .error ${MACHINE_ARCH} not implemented
     18 .endif
     19 
     20 .include <bsd.kmodule.mk>
     21