diff options
Diffstat (limited to 'archivers/unzip/Makefile')
-rw-r--r-- | archivers/unzip/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile index 9fdaa7aba516..3c2502a63a27 100644 --- a/archivers/unzip/Makefile +++ b/archivers/unzip/Makefile @@ -3,7 +3,7 @@ # Date created: 17 October 1994 # Whom: jmz # -# $Id: Makefile,v 1.19 1998/10/04 10:31:38 jkh Exp $ +# $Id: Makefile,v 1.20 1998/10/04 23:18:12 jkh Exp $ # DISTNAME= unzip532 @@ -15,11 +15,6 @@ MAINTAINER= ache@FreeBSD.ORG WRKSRC= ${WRKDIR}/unzip-5.32 MAKEFILE= unix/Makefile -.if ${ARCH} == alpha -ALL_TARGET= bsd -.else -ALL_TARGET= freebsd -.endif MAKE_FLAGS= LOCAL_UNZIP="${CFLAGS} -DUSE_UNSHRINK" -f MAN1= funzip.1 unzip.1 unzipsfx.1 zipgrep.1 zipinfo.1 @@ -36,3 +31,9 @@ do-install: ${INSTALL_DATA} README COPYING WHERE ${PREFIX}/share/doc/unzip .include <bsd.port.mk> + +.if ${ARCH} == "alpha" +ALL_TARGET= bsd +.else +ALL_TARGET= freebsd +.endif |