mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 16:47:30 -04:00
* New test scripts exercise some basic functionality
* Most header inclusions are now protected (portability)
* read.c now relies on security checks in libarchive instead
of trying to do its own (optimization)
* -p now enabled by default for root, add --no-same-permissions
to disable it
* Comments, minor style fixes.
14 lines
325 B
Makefile
14 lines
325 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bsdtar
|
|
VERSION= 2.0.23
|
|
SRCS= bsdtar.c getdate.y matching.c read.c tree.c util.c write.c
|
|
WARNS?= 5
|
|
DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
|
|
LDADD= -larchive -lbz2 -lz
|
|
CFLAGS+= -DPACKAGE_VERSION=\"${VERSION}\"
|
|
CFLAGS+= -I${.CURDIR}
|
|
SYMLINKS= bsdtar ${BINDIR}/tar
|
|
MLINKS= bsdtar.1 tar.1
|
|
|
|
.include <bsd.prog.mk>
|