diff options
author | jkh <jkh@FreeBSD.org> | 1999-07-02 04:00:01 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-07-02 04:00:01 +0000 |
commit | 1473f599fcb93ef7f7a2db81428f6d9016b15704 (patch) | |
tree | 9a0607b0764e9f026eb35a51cfb7f342f354529e /sys/i386 | |
parent | df3583f21bf8067bed5c714713c91f1d02443552 (diff) | |
download | FreeBSD-src-1473f599fcb93ef7f7a2db81428f6d9016b15704.zip FreeBSD-src-1473f599fcb93ef7f7a2db81428f6d9016b15704.tar.gz |
Working kernel tags!
Submitted by: Craig Leres <leres@ee.lbl.gov>
PR: 2806
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/conf/Makefile.i386 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/i386/conf/Makefile.i386 b/sys/i386/conf/Makefile.i386 index 6a7a29e..b889f7d 100644 --- a/sys/i386/conf/Makefile.i386 +++ b/sys/i386/conf/Makefile.i386 @@ -1,7 +1,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.155 1999/06/28 07:19:51 phk Exp $ +# $Id: Makefile.i386,v 1.156 1999/06/28 09:21:35 peter Exp $ # # Makefile for FreeBSD # @@ -222,7 +222,10 @@ links: sh makelinks && rm -f dontlink tags: - @echo "see $S/kern/Makefile for tags" + @[ -f .depend ] || { echo "you must make depend first"; exit 1; } + sh $S/conf/systags.sh + rm -f tags1 + sed -e 's, ../, ,' tags > tags1 install install.debug: @if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \ |