d671137571
* prototypes for optarg/optind on platforms that don't already have them * Disambiguate version number macros * Remove unnecessary PACKAGE_NAME macro * Hook for forthcoming bsdtar test suite * Sync version number up with the portable distribution
19 lines
464 B
Makefile
19 lines
464 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bsdtar
|
|
BSDTAR_VERSION_STRING= 2.4.11
|
|
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+= -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
|
|
|
|
check: $(PROG)
|
|
cd ${.CURDIR}/test && make clean test
|
|
|
|
.include <bsd.prog.mk>
|