diff options
author | peter <peter@FreeBSD.org> | 1997-03-29 10:45:39 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-29 10:45:39 +0000 |
commit | 13c8fe24a7948e34a91826931dbd257d09ac18fb (patch) | |
tree | 6bc3f0a42ce6bc9935997fc03782550fd084e3bd /sys/alpha | |
parent | 471b96085862dc1a7678c0260d64c09770eef326 (diff) | |
download | FreeBSD-src-13c8fe24a7948e34a91826931dbd257d09ac18fb.zip FreeBSD-src-13c8fe24a7948e34a91826931dbd257d09ac18fb.tar.gz |
Add a Makefile for regenerating the syscall tables
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/alpha/linux/Makefile b/sys/alpha/linux/Makefile new file mode 100644 index 0000000..e1f0033 --- /dev/null +++ b/sys/alpha/linux/Makefile @@ -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 |