NetBSD/usr.bin/unzip/Makefile
joerg fb6d0a4e0d Explicitly link against libpthread and liblzma to make static linking
happy. Newer libarchive supports LZMA compression in zip files.
2019-07-28 12:44:36 +00:00

12 lines
286 B
Makefile

# $NetBSD: Makefile,v 1.7 2019/07/28 12:44:36 joerg Exp $
.include <bsd.own.mk>
PROG= unzip
DPADD+= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2} ${LIBLZMA} ${LIBCRYPTO} ${LIBPTHREAD}
LDADD+= -larchive -lz -lbz2 -llzma -lcrypto -lpthread
COPTS.unzip.c += -Wno-format-y2k
.include <bsd.prog.mk>