59e2ff550c
the FreeBSD test suite functional_test.sh was ported from bin/sh/tests/functional_test.sh, as a small wrapper around libarchive_test, bsdcpio_test, and bsdtar_test provided by upstream. A handful of testcases in lib/libarchive/tests have been disabled as they were failing when run with kyua test (see BROKEN_TESTS in lib/libarchive/tests/Makefile) As a sidenote: this removes the check/test targets from the Makefiles as they don't match the pattern used in the rest of the FreeBSD test suite. MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
40 lines
920 B
Makefile
40 lines
920 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIBARCHIVEDIR= ${.CURDIR}/../../contrib/libarchive
|
|
LIBARCHIVECONFDIR= ${.CURDIR}/../../lib/libarchive
|
|
|
|
PROG= bsdcpio
|
|
BSDCPIO_VERSION_STRING= 3.1.2
|
|
|
|
.PATH: ${LIBARCHIVEDIR}/cpio
|
|
SRCS= cpio.c cmdline.c
|
|
|
|
.PATH: ${LIBARCHIVEDIR}/libarchive_fe
|
|
SRCS+= err.c line_reader.c
|
|
|
|
CFLAGS+= -DBSDCPIO_VERSION_STRING=\"${BSDCPIO_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"${LIBARCHIVECONFDIR}/config_freebsd.h\"
|
|
CFLAGS+= -I${LIBARCHIVEDIR}/cpio -I${LIBARCHIVEDIR}/libarchive_fe
|
|
|
|
.ifdef RELEASE_CRUNCH
|
|
# FreeBSD's installer uses cpio in crunched binaries that are
|
|
# statically linked, cannot use -lcrypto, and are size sensitive.
|
|
CFLAGS+= -DSMALLER
|
|
.endif
|
|
LIBADD= archive
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
|
.endif
|
|
|
|
SYMLINKS=bsdcpio ${BINDIR}/cpio
|
|
MLINKS= bsdcpio.1 cpio.1
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|