Home | History | Annotate | Line # | Download | only in unzip
Makefile revision 1.3
      1  1.3  christos # $NetBSD: Makefile,v 1.3 2017/04/21 23:06:18 christos Exp $
      2  1.1     joerg 
      3  1.3  christos .include <bsd.own.mk>
      4  1.1     joerg PROG=	unzip
      5  1.1     joerg 
      6  1.1     joerg DPADD+=		${LIBARCHIVE} ${LIBZ} ${LIBBZ2}
      7  1.1     joerg LDADD+=		-larchive -lz -lbz2
      8  1.1     joerg 
      9  1.3  christos .if ${MKCRYPTO:Uno} 
     10  1.3  christos LDADD=  -lcrypto
     11  1.3  christos DPADD=  ${LIBCRYPTO}
     12  1.3  christos .endif
     13  1.3  christos 
     14  1.2  christos COPTS.unzip.c += -Wno-format-y2k
     15  1.2  christos 
     16  1.1     joerg .include <bsd.prog.mk>
     17