1*0a6a1f1dSLionel Sambuc# $NetBSD: bsd.syscall.mk,v 1.2 2014/01/16 01:19:46 christos Exp $ 2*0a6a1f1dSLionel Sambuc# 3*0a6a1f1dSLionel Sambuc.include <bsd.own.mk> 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel SambucSYSCALL_OBJS?= ${SYSCALL_PREFIX}_sysent.c ${SYSCALL_PREFIX}_syscalls.c \ 6*0a6a1f1dSLionel Sambuc ${SYSCALL_PREFIX}_syscall.h ${SYSCALL_PREFIX}_syscallargs.h 7*0a6a1f1dSLionel Sambuc 8*0a6a1f1dSLionel SambucSYSCALL_DEPS?= ${NETBSDSRCDIR}/sys/kern/makesyscalls.sh \ 9*0a6a1f1dSLionel Sambuc syscalls.conf syscalls.master 10*0a6a1f1dSLionel Sambuc 11*0a6a1f1dSLionel Sambucall: ${SYSCALL_OBJS} 12*0a6a1f1dSLionel Sambuc 13*0a6a1f1dSLionel Sambuc${SYSCALL_OBJS}: ${SYSCALL_DEPS} 14*0a6a1f1dSLionel Sambuc ${HOST_SH} ${.ALLSRC} 15*0a6a1f1dSLionel Sambuc 16*0a6a1f1dSLionel Sambuc.include <bsd.kinc.mk> 17