Add a Makefile for regenerating the syscall tables

This commit is contained in:
Peter Wemm 1997-03-29 10:45:39 +00:00
parent 226e691b4c
commit 64f873e1f3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24368
2 changed files with 14 additions and 0 deletions

7
sys/alpha/linux/Makefile Normal file
View File

@ -0,0 +1,7 @@
# Makefile for syscalls tables
linux_sysent.c linux_syscall.h linux_proto.h: ../../kern/makesyscalls.sh syscalls.master syscalls.conf
-mv -f linux_sysent.c linux_sysent.c.bak
-mv -f linux_syscall.h linux_syscall.h.bak
-mv -f linux_proto.h linux_proto.h.bak
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf

7
sys/i386/linux/Makefile Normal file
View File

@ -0,0 +1,7 @@
# Makefile for syscalls tables
linux_sysent.c linux_syscall.h linux_proto.h: ../../kern/makesyscalls.sh syscalls.master syscalls.conf
-mv -f linux_sysent.c linux_sysent.c.bak
-mv -f linux_syscall.h linux_syscall.h.bak
-mv -f linux_proto.h linux_proto.h.bak
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf