5191e7b552
* Add xz and lzma compression options * Rename --format-options to simply --options * Add --same-owner for GNU tar compat * Add -lmd and -lcrypto to fix link * Documentation
21 lines
549 B
Makefile
21 lines
549 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bsdtar
|
|
BSDTAR_VERSION_STRING=2.7.0
|
|
SRCS= bsdtar.c cmdline.c getdate.c matching.c read.c siginfo.c subst.c tree.c util.c write.c
|
|
WARNS?= 5
|
|
DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
|
|
LDADD= -larchive -lbz2 -lz -lmd -lcrypto
|
|
CFLAGS+= -DBSDTAR_VERSION_STRING=\"${BSDTAR_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\"
|
|
CFLAGS+= -I${.CURDIR}
|
|
SYMLINKS= bsdtar ${BINDIR}/tar
|
|
MLINKS= bsdtar.1 tar.1
|
|
DEBUG_FLAGS=-g
|
|
|
|
.PHONY: check test
|
|
check test: $(PROG) bsdtar.1.gz
|
|
cd ${.CURDIR}/test && make test
|
|
|
|
.include <bsd.prog.mk>
|