NetBSD/gnu/usr.bin/cvs/cvsbug/Makefile

27 lines
552 B
Makefile

# $NetBSD: Makefile,v 1.5 2003/01/16 02:37:00 wiz Exp $
.include "${.CURDIR}/../Makefile.inc"
DIST= ${IDIST}/src
.PATH: ${DIST} ${IDIST}/man ${IDIST}
SCRIPTS= cvsbug
MAN= cvsbug.8
CLEANFILES+=.fname cvsbug
cvsbug: cvsbug.in
sed -e 's,@PACKAGE_BUGREPORT@,bug-cvs@gnu.org,g' \
-e "s,@VERSION@,`cat .fname`,g" ${.ALLSRC} > ${.TARGET}
chmod a+x ${.TARGET}
cvsbug: .fname
.fname: configure
echo > .fname \
cvs-`sed < ${.ALLSRC} \
-e '/PACKAGE_VERSION/!d' \
-e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
-e q`
.include <bsd.prog.mk>