acc60b03c1
Update libarchive to 3.1.2 Some of new features: - support for lrzip and grzip compression - support for writing tar v7 format - b64encode and uuencode filters - support for __MACOSX directory in Zip archives - support for lzop compresion (external utility)
20 lines
340 B
Makefile
20 lines
340 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= ar
|
|
SRCS= ar.c acplex.l acpyacc.y read.c util.c write.c y.tab.h
|
|
|
|
DPADD= ${LIBARCHIVE} ${LIBELF} ${LIBZ}
|
|
LDADD= -larchive -lelf -lz
|
|
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
.if ${MK_SHARED_TOOLCHAIN} == "no"
|
|
NO_SHARED?= yes
|
|
.endif
|
|
LINKS= ${BINDIR}/ar ${BINDIR}/ranlib
|
|
MLINKS= ar.1 ranlib.1
|
|
|
|
.include <bsd.prog.mk>
|