diff options
Diffstat (limited to 'misc/mmv/Makefile')
-rw-r--r-- | misc/mmv/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/misc/mmv/Makefile b/misc/mmv/Makefile index 7a457d9c463..d1ae0b1a747 100644 --- a/misc/mmv/Makefile +++ b/misc/mmv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2003/07/17 21:49:30 grant Exp $ +# $NetBSD: Makefile,v 1.6 2003/09/22 09:56:24 wiz Exp $ # DISTNAME= mmv_1.01b.orig @@ -13,4 +13,14 @@ COMMENT= mmv is a program to move multiple files using wildcard patterns ALL_TARGET= mmv +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +CFLAGS+= -DIS_SYSV +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/mmv ${PREFIX}/bin/mmv + ${INSTALL_MAN} ${WRKSRC}/mmv.1 ${PREFIX}/man/man1/mmv.1 + .include "../../mk/bsd.pkg.mk" |