diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
commit | 49f337d203a35b330e9816734307eae928c9ad22 (patch) | |
tree | 9c7a58bc72f073465ca4da2b58638cc25beb2f62 /net/bb | |
parent | Cleaned up post-install target. (diff) |
General Makefile cleanup
Add MAINATERS
mkdir -p ==> ${MKDIR}
cp ==> ${CP}
install ==> ${INSTALL}/${INSTALL_*}
etc...
Notes
Notes:
svn path=/head/; revision=4738
Diffstat (limited to 'net/bb')
-rw-r--r-- | net/bb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bb/Makefile b/net/bb/Makefile index 3e00b6506753..86a60f81b8c4 100644 --- a/net/bb/Makefile +++ b/net/bb/Makefile @@ -3,7 +3,7 @@ # Date created: So 17 Nov 1996 16:59:23 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.2 1996/11/18 05:35:30 asami Exp $ +# $Id: Makefile,v 1.3 1996/11/26 09:15:36 asami Exp $ # DISTNAME= bb @@ -19,7 +19,7 @@ RUN_DEPENDS= lyx:${PORTSDIR}/print/lyx post-configure: ( cd ${WRKSRC}/doc; /bin/sh bbconfig freebsd ) - @cp ${FILESDIR}/Makefile ${WRKSRC} + @${CP} ${FILESDIR}/Makefile ${WRKSRC} do-install: @${MKDIR} ${PREFIX}/${DISTNAME}/bin @@ -119,7 +119,7 @@ do-install: ${PREFIX}/${DISTNAME}/www/gifs/yellow.gif ${INSTALL_DATA} ${WRKSRC}/www/logs/later \ ${PREFIX}/${DISTNAME}/www/logs/later - @rm -f ${PREFIX}/www/data/bb + @${RM} -f ${PREFIX}/www/data/bb @ln -s ../../${DISTNAME}/www ${PREFIX}/www/data/bb @echo "" @echo "================================================================" |