diff options
Diffstat (limited to 'Utilities/cmlibarchive/cpio')
-rw-r--r-- | Utilities/cmlibarchive/cpio/Makefile | 26 | ||||
-rw-r--r-- | Utilities/cmlibarchive/cpio/test/Makefile | 75 |
2 files changed, 0 insertions, 101 deletions
diff --git a/Utilities/cmlibarchive/cpio/Makefile b/Utilities/cmlibarchive/cpio/Makefile deleted file mode 100644 index d575821..0000000 --- a/Utilities/cmlibarchive/cpio/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# $FreeBSD: src/usr.bin/cpio/Makefile,v 1.6 2008/12/06 07:30:40 kientzle Exp $ - -.include <bsd.own.mk> -.PATH: ${.CURDIR}/../libarchive_fe - -PROG= bsdcpio -BSDCPIO_VERSION_STRING=2.7.900a -SRCS= cpio.c cmdline.c err.c line_reader.c matching.c pathmatch.c -WARNS?= 6 -DPADD= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2} -CFLAGS+= -DBSDCPIO_VERSION_STRING=\"${BSDCPIO_VERSION_STRING}\" -CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -CFLAGS+= -I../libarchive_fe -I${.CURDIR} -LDADD+= -larchive -lz -lbz2 -lmd -lcrypto - -.if ${MK_GNU_CPIO} != "yes" -SYMLINKS=bsdcpio ${BINDIR}/cpio -MLINKS= bsdcpio.1 cpio.1 -.endif - -.PHONY: check test - -check test: $(PROG) bsdcpio.1.gz - cd ${.CURDIR}/test && make clean test - -.include <bsd.prog.mk> diff --git a/Utilities/cmlibarchive/cpio/test/Makefile b/Utilities/cmlibarchive/cpio/test/Makefile deleted file mode 100644 index ab4247c..0000000 --- a/Utilities/cmlibarchive/cpio/test/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# $FreeBSD: src/usr.bin/cpio/test/Makefile,v 1.4 2008/08/24 05:49:36 kientzle Exp $ - -# Where to find the cpio sources (for the internal unit tests) -CPIO_SRCDIR=${.CURDIR}/.. -.PATH: ${CPIO_SRCDIR} ${CPIO_SRCDIR}/../libarchive_fe - -# Some cpio sources are pulled in for white-box tests -CPIO_SRCS= cmdline.c err.c pathmatch.c - -TESTS= \ - test_0.c \ - test_basic.c \ - test_cmdline.c \ - test_format_newc.c \ - test_gcpio_compat.c \ - test_option_B_upper.c \ - test_option_C_upper.c \ - test_option_J_upper.c \ - test_option_L_upper.c \ - test_option_Z_upper.c \ - test_option_a.c \ - test_option_c.c \ - test_option_d.c \ - test_option_f.c \ - test_option_help.c \ - test_option_l.c \ - test_option_lzma.c \ - test_option_m.c \ - test_option_t.c \ - test_option_u.c \ - test_option_version.c \ - test_option_y.c \ - test_option_z.c \ - test_owner_parse.c \ - test_passthrough_dotdot.c \ - test_passthrough_reverse.c \ - test_pathmatch.c - -# Build the test program -SRCS= list.h \ - ${CPIO_SRCS} \ - ${TESTS} \ - main.c - -CLEANFILES+= list.h bsdcpio_test - -NO_MAN=yes - -PROG=bsdcpio_test -DPADD=${LIBARCHIVE} ${LIBBZ2} ${LIBZ} -CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -CFLAGS+= -I.. -I../../libarchive_fe -LDADD= -larchive -lz -lbz2 -CFLAGS+= -static -g -O2 -Wall -CFLAGS+= -I${.OBJDIR} -CFLAGS+= -I${CPIO_SRCDIR} - -# Uncomment to link against dmalloc -#LDADD+= -L/usr/local/lib -ldmalloc -#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC -WARNS=6 - -check test: bsdcpio_test - ${.OBJDIR}/bsdcpio_test -p ${.OBJDIR}/../bsdcpio -r ${.CURDIR} - -${.OBJDIR}/list.h list.h: ${TESTS} Makefile - (cd ${.CURDIR}; cat ${TESTS}) | grep DEFINE_TEST > list.h - -clean: - rm -f ${CLEANFILES} - rm -f *~ - -chmod -R +w /tmp/bsdcpio_test.* - rm -rf /tmp/bsdcpio_test.* - -.include <bsd.prog.mk> |