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