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 /ftp/ftptool/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 'ftp/ftptool/Makefile')
-rw-r--r-- | ftp/ftptool/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp/ftptool/Makefile b/ftp/ftptool/Makefile index a89713d..5b83525 100644 --- a/ftp/ftptool/Makefile +++ b/ftp/ftptool/Makefile @@ -3,7 +3,7 @@ # Date created: 19 March 1996 # Whom: janek@gaja.ipan.lublin.pl # -# $Id: Makefile,v 1.1.1.1 1996/03/25 08:58:58 asami Exp $ +# $Id: Makefile,v 1.2 1996/11/18 09:54:30 asami Exp $ # DISTNAME= ftptool-4.6 @@ -22,7 +22,7 @@ WRKSRC= ${WRKDIR}/Ftptool4.6 # Because lex.l is broken, lex.c is taken from old FreeBSD 1.1 port post-extract: - cp ${FILESDIR}/lex.c ${WRKSRC} - rm -f ${WRKSRC}/lex.l + @${CP} ${FILESDIR}/lex.c ${WRKSRC} + @${RM} -f ${WRKSRC}/lex.l .include <bsd.port.mk> |