1# Makefile for syscall tables 2# 3# $FreeBSD$ 4 5# Don't use an OBJDIR 6.OBJDIR: ${.CURDIR} 7 8all: 9 @echo "make sysent only" 10 11sysent: freebsd32_sysent.c freebsd32_syscall.h freebsd32_proto.h freebsd32_systrace_args.c 12 13freebsd32_sysent.c freebsd32_syscalls.c freebsd32_syscall.h freebsd32_proto.h freebsd32_systrace_args.c : \ 14 ../../kern/makesyscalls.sh syscalls.master ${.CURDIR}/syscalls.conf ../../kern/capabilities.conf 15 sh ../../kern/makesyscalls.sh syscalls.master ${.CURDIR}/syscalls.conf 16 17clean: 18 rm -f freebsd32_sysent.c freebsd32_syscalls.c freebsd32_syscall.h freebsd32_proto.h 19 rm -f freebsd32_systrace_args.c 20