svn commit: r213368 - head/sys/kern

Warner Losh imp at FreeBSD.org
Sat Oct 2 21:35:34 UTC 2010


Author: imp
Date: Sat Oct  2 21:35:33 2010
New Revision: 213368
URL: http://svn.freebsd.org/changeset/base/213368

Log:
  Turns out this file was how we make sysent stuff, so add that part only back...

Added:
  head/sys/kern/Makefile   (contents, props changed)

Added: head/sys/kern/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/kern/Makefile	Sat Oct  2 21:35:33 2010	(r213368)
@@ -0,0 +1,20 @@
+#	@(#)Makefile	8.2 (Berkeley) 3/21/94
+# $FreeBSD$
+
+# Makefile for init_sysent
+
+all:
+	@echo "make tags, make links or make sysent only"
+
+sysent: init_sysent.c syscalls.c ../sys/syscall.h ../sys/syscall.mk \
+../sys/sysproto.h
+
+init_sysent.c syscalls.c systrace_args.c ../sys/syscall.h \
+../sys/syscall.mk ../sys/sysproto.h: makesyscalls.sh syscalls.master
+	-mv -f init_sysent.c init_sysent.c.bak
+	-mv -f syscalls.c syscalls.c.bak
+	-mv -f systrace_args.c systrace_args.c.bak
+	-mv -f ../sys/syscall.h ../sys/syscall.h.bak
+	-mv -f ../sys/syscall.mk ../sys/syscall.mk.bak
+	-mv -f ../sys/sysproto.h ../sys/sysproto.h.bak
+	sh makesyscalls.sh syscalls.master


More information about the svn-src-head mailing list