Replicate changes to i386 to do tags. I doesn't work yet 'coz ctags dumps

core, but when that is fixed it ought to.
This commit is contained in:
Matt Jacob 1999-07-02 04:16:57 +00:00
parent 93740fb962
commit 8450a1cf5d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48442
2 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Makefile.alpha -- with config changes. # Makefile.alpha -- with config changes.
# Copyright 1990 W. Jolitz # Copyright 1990 W. Jolitz
# from: @(#)Makefile.alpha 7.1 5/10/91 # from: @(#)Makefile.alpha 7.1 5/10/91
# $Id: Makefile.alpha,v 1.26 1999/06/26 12:45:17 peter Exp $ # $Id: Makefile.alpha,v 1.27 1999/06/28 09:18:44 peter Exp $
# #
# Makefile for FreeBSD # Makefile for FreeBSD
# #
@ -243,7 +243,10 @@ links:
sh makelinks && rm -f dontlink sh makelinks && rm -f dontlink
tags: 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: install install.debug:
@if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \ @if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \

View File

@ -1,7 +1,7 @@
# Makefile.alpha -- with config changes. # Makefile.alpha -- with config changes.
# Copyright 1990 W. Jolitz # Copyright 1990 W. Jolitz
# from: @(#)Makefile.alpha 7.1 5/10/91 # from: @(#)Makefile.alpha 7.1 5/10/91
# $Id: Makefile.alpha,v 1.26 1999/06/26 12:45:17 peter Exp $ # $Id: Makefile.alpha,v 1.27 1999/06/28 09:18:44 peter Exp $
# #
# Makefile for FreeBSD # Makefile for FreeBSD
# #
@ -243,7 +243,10 @@ links:
sh makelinks && rm -f dontlink sh makelinks && rm -f dontlink
tags: 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: install install.debug:
@if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \ @if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \