7fbeb03eb7
Adjust dependencies for programs using libarchive Add xz and linkage against liblzma to rescue system Approved by: kientzle, delphij (mentor) MFC after: 2 weeks
31 lines
779 B
Makefile
31 lines
779 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= bsdcpio
|
|
BSDCPIO_VERSION_STRING=2.8.3
|
|
SRCS= cpio.c cmdline.c err.c line_reader.c matching.c pathmatch.c
|
|
CFLAGS+= -DBSDCPIO_VERSION_STRING=\"${BSDCPIO_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\"
|
|
.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
|
|
DPADD= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2} ${LIBMD} ${LIBLZMA}
|
|
LDADD= -larchive -lz -lbz2 -lmd -llzma
|
|
.if ${MK_OPENSSL} != "no"
|
|
DPADD+= ${LIBCRYPTO}
|
|
LDADD+= -lcrypto
|
|
.endif
|
|
|
|
SYMLINKS=bsdcpio ${BINDIR}/cpio
|
|
MLINKS= bsdcpio.1 cpio.1
|
|
|
|
.PHONY: check test
|
|
|
|
check test: $(PROG) bsdcpio.1.gz
|
|
cd ${.CURDIR}/test && make clean test
|
|
|
|
.include <bsd.prog.mk>
|