diff options
author | joerg <joerg@pkgsrc.org> | 2006-12-29 19:02:25 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-12-29 19:02:25 +0000 |
commit | 2ef327b62783185899fc312f971f735e78f817bd (patch) | |
tree | 02b0cb269908a9950a8647fd106fbe00f29629ca /Makefile | |
parent | a1d4b9e70ab14dd448da5079f029b60c9936def3 (diff) | |
download | pkgsrc-2ef327b62783185899fc312f971f735e78f817bd.tar.gz |
Change the way INDEX is used by dropping the dependency on PKGDB in
INDEX and calling it directly. As the output is removed anyway, it
forced a full rescan on every "make search". Calling "make index" still
regenerates it all the time, but the other targets don't.
OK wiz@
PRs: 26442, 34207, 35266
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.77 2006/07/02 12:29:22 rillig Exp $ +# $NetBSD: Makefile,v 1.78 2006/12/29 19:02:25 joerg Exp $ # # tools used by this Makefile @@ -138,9 +138,12 @@ ${.CURDIR}/PKGDB: done .PHONY: index -index: ${.CURDIR}/INDEX +index: + @${RM} ${.CURDIR}/INDEX + @${MAKE} ${.CURDIR}/INDEX -${.CURDIR}/INDEX: ${.CURDIR}/PKGDB +${.CURDIR}/INDEX: + @${MAKE} ${.CURDIR}/PKGDB @${RM} -f ${.CURDIR}/INDEX @${AWK} -f ./mk/scripts/genindex.awk PKGSRCDIR=${.CURDIR} SORT=${SORT} ${.CURDIR}/PKGDB @${RM} -f ${.CURDIR}/PKGDB |