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 /net/pmf/Makefile | |
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 'net/pmf/Makefile')
-rw-r--r-- | net/pmf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/pmf/Makefile b/net/pmf/Makefile index 5040b6a..a90d5e1 100644 --- a/net/pmf/Makefile +++ b/net/pmf/Makefile @@ -3,7 +3,7 @@ # Date created: 24 Sep 1994 # Whom: adam # -# $Id: Makefile,v 1.6 1995/11/27 04:05:24 asami Exp $ +# $Id: Makefile,v 1.7 1996/11/18 11:35:44 asami Exp $ # DISTNAME= pmf-1.13.1 @@ -13,7 +13,7 @@ MASTER_SITES= ftp://ftp.lysator.liu.se/pub/lpmud/clients/ WRKSRC= ${WRKDIR}/pmfdir/src pre-install: - @mkdir -p /usr/local/lib/pmf + @${MKDIR} /usr/local/lib/pmf @find ${WRKSRC}/../system_dir -name '*.orig' -exec rm {} \; @-mv ${WRKSRC}/../doc/pmf.doc ${WRKSRC}/../system_dir @tar -C ${WRKSRC}/../system_dir -cf - . \ |