aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-20 14:32:30 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-20 14:32:30 +0000
commitb7052cd11044f87d1b8b3ee1d73930d8ecf891c8 (patch)
treee4949678803a7d1790f07015bcbeadce0713c3ba
parent876a94ee2c9fbdfc185d4f75012bd4ead26ac73d (diff)
downloadsrc-b7052cd11044f87d1b8b3ee1d73930d8ecf891c8.tar.gz
src-b7052cd11044f87d1b8b3ee1d73930d8ecf891c8.zip
Fixed cleaning of tags files. GSYMS was forgotten.
Notes
Notes: svn path=/head/; revision=33681
-rw-r--r--share/mk/bsd.dep.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk
index 7e7b02f937b3..00ff459fc37b 100644
--- a/share/mk/bsd.dep.mk
+++ b/share/mk/bsd.dep.mk
@@ -1,4 +1,4 @@
-# $Id: bsd.dep.mk,v 1.15 1997/10/05 09:39:42 jkh Exp $
+# $Id: bsd.dep.mk,v 1.16 1997/12/14 15:38:47 wosch Exp $
#
# The include file <bsd.dep.mk> handles Makefile dependencies.
#
@@ -90,7 +90,7 @@ tags: ${SRCS} _SUBDIR
.if !target(cleandepend)
cleandepend: _SUBDIR
.if defined(SRCS)
- rm -f ${DEPENDFILE} ${.CURDIR}/GRTAGS ${.CURDIR}/GTAGS
+ rm -f ${DEPENDFILE} ${.CURDIR}/GRTAGS ${.CURDIR}/GSYMS ${.CURDIR}/GTAGS
.if defined(HTML)
rm -rf ${.CURDIR}/HTML
.endif