diff options
author | obrien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-12-01 01:23:27 +0000 |
commit | 8efcf00b2e5836ef32baf7637535242a296a8c38 (patch) | |
tree | 6d6249f3f223daa0ca98c880b13d349c86a0942c /irc/zircon | |
parent | 238c02c9d9fee5aee4bb8357a9efa521b3d1364e (diff) | |
download | FreeBSD-ports-8efcf00b2e5836ef32baf7637535242a296a8c38.zip FreeBSD-ports-8efcf00b2e5836ef32baf7637535242a296a8c38.tar.gz |
General Makefile cleanup
Add MAINATERS
mkdir -p ==> ${MKDIR}
cp ==> ${CP}
install ==> ${INSTALL}/${INSTALL_*}
etc...
Diffstat (limited to 'irc/zircon')
-rw-r--r-- | irc/zircon/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/irc/zircon/Makefile b/irc/zircon/Makefile index 2a75dd7..876d6ec 100644 --- a/irc/zircon/Makefile +++ b/irc/zircon/Makefile @@ -3,13 +3,15 @@ # Date created: 19 Aug 1995 # Whom: jkh / pst # -# $Id: Makefile,v 1.8 1996/08/17 11:07:53 peter Exp $ +# $Id: Makefile,v 1.9 1996/11/18 11:37:27 asami Exp $ # DISTNAME= zircon-1.17p3 CATEGORIES= net MASTER_SITES= ftp://catless.ncl.ac.uk/pub/ +MAINTAINER= jkh@FreeBSD.org + # # You can define USE_DPWISH if you want to run under the older # tcl7.3/tk3.6/tclDP code. The author strongly reccomends using @@ -36,6 +38,6 @@ MAKE_ENV+= TCLSH=tclsh7.5 MAKEFILE= Makefile.FreeBSD pre-patch: - cp ${WRKSRC}/Makefile.Linux ${WRKSRC}/Makefile.FreeBSD + ${CP} ${WRKSRC}/Makefile.Linux ${WRKSRC}/Makefile.FreeBSD .include <bsd.port.mk> |