diff options
author | bde <bde@FreeBSD.org> | 1998-02-20 14:32:30 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-20 14:32:30 +0000 |
commit | 52f295ed40d46165a961db7986e4f6a5585113ba (patch) | |
tree | 57a9beb6677df968dcd0582340c7223e79f84ae8 /share/mk | |
parent | 6982cfc5c09364e9b98d3b6b37b46ea75473b8d2 (diff) | |
download | FreeBSD-src-52f295ed40d46165a961db7986e4f6a5585113ba.zip FreeBSD-src-52f295ed40d46165a961db7986e4f6a5585113ba.tar.gz |
Fixed cleaning of tags files. GSYMS was forgotten.
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.dep.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 7e7b02f..00ff459 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 |