Home | History | Annotate | Line # | Download | only in mk
bsd.syscall.mk revision 1.1
      1  1.1  christos # $NetBSD: bsd.syscall.mk,v 1.1 2014/01/14 18:51:45 christos Exp $
      2  1.1  christos #
      3  1.1  christos .include <bsd.own.mk>
      4  1.1  christos .include <bsd.sys.mk>
      5  1.1  christos 
      6  1.1  christos SYSCALL_OBJS?=	${SYSCALL_PREFIX}_sysent.c ${SYSCALL_PREFIX}_syscalls.c \
      7  1.1  christos 	${SYSCALL_PREFIX}_syscall.h ${SYSCALL_PREFIX}_syscallargs.h
      8  1.1  christos 
      9  1.1  christos SYSCALL_DEPS?=	${NETBSDSRCDIR}/sys/kern/makesyscalls.sh \
     10  1.1  christos 	syscalls.conf syscalls.master
     11  1.1  christos 
     12  1.1  christos all: ${SYSCALL_OBJS}
     13  1.1  christos 
     14  1.1  christos ${SYSCALL_OBJS}: ${SYSCALL_DEPS}
     15  1.1  christos 	${HOST_SH} ${.ALLSRC}
     16  1.1  christos 
     17  1.1  christos .include <bsd.kinc.mk>
     18