diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-10-30 17:10:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-10-30 17:10:56 (GMT) |
commit | fb51d98562a26b6dcde7d3597938a0b707b6b881 (patch) | |
tree | b42fbfb6b27b7a9e2d5068601f61d80e7033dc79 /Utilities/cmlibarchive/tar/test/Makefile | |
parent | 0615218bdf3e240e44e539f9eed6c1cf9fbff2d4 (diff) | |
download | CMake-fb51d98562a26b6dcde7d3597938a0b707b6b881.zip CMake-fb51d98562a26b6dcde7d3597938a0b707b6b881.tar.gz CMake-fb51d98562a26b6dcde7d3597938a0b707b6b881.tar.bz2 |
Switch to using libarchive from libtar for cpack and cmake -E tar
This allows for a built in bzip and zip capability, so external tools
will not be needed for these packagers. The cmake -E tar xf should be
able to handle all compression types now as well.
Diffstat (limited to 'Utilities/cmlibarchive/tar/test/Makefile')
-rw-r--r-- | Utilities/cmlibarchive/tar/test/Makefile | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Utilities/cmlibarchive/tar/test/Makefile b/Utilities/cmlibarchive/tar/test/Makefile new file mode 100644 index 0000000..a3382fc --- /dev/null +++ b/Utilities/cmlibarchive/tar/test/Makefile @@ -0,0 +1,68 @@ +# $FreeBSD: src/usr.bin/tar/test/Makefile,v 1.5 2008/11/10 05:04:55 kientzle Exp $ + +# Where to find the tar sources (for the internal unit tests) +TAR_SRCDIR=${.CURDIR}/.. +.PATH: ${TAR_SRCDIR} + +# Some tar sources are pulled in for white-box tests +TAR_SRCS= \ + getdate.c + +TESTS= \ + test_0.c \ + test_basic.c \ + test_copy.c \ + test_getdate.c \ + test_help.c \ + test_option_T_upper.c \ + test_option_q.c \ + test_option_r.c \ + test_option_s.c \ + test_patterns.c \ + test_stdio.c \ + test_strip_components.c \ + test_symlink_dir.c \ + test_version.c \ + test_windows.c + +# Build the test program +SRCS= ${TAR_SRCS} \ + ${TESTS} \ + list.h \ + main.c + +CLEANFILES+= list.h + +NO_MAN=yes + +PROG=bsdtar_test +DPADD=${LIBARCHIVE} ${LIBBZ2} ${LIBZ} +CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" +CFLAGS+= -I.. +LDADD= -larchive -lz -lbz2 +CFLAGS+= -static -g -O2 -Wall +CFLAGS+= -I${.OBJDIR} +CFLAGS+= -I${TAR_SRCDIR} + +# Uncomment to link against dmalloc +#LDADD+= -L/usr/local/lib -ldmalloc +#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC +WARNS=6 + +check test: bsdtar_test + ./bsdtar_test -p ${.OBJDIR}/../bsdtar -r ${.CURDIR} + +list.h: ${TESTS} Makefile + (cd ${.CURDIR}; cat ${TESTS}) | grep DEFINE_TEST > list.h + +clean: + rm -f *.out + rm -f *.o + rm -f *.core + rm -f *~ + rm -f list.h + rm -f archive.h ../archive.h + -chmod -R +w /tmp/bsdtar_test.* + rm -rf /tmp/bsdtar_test.* + +.include <bsd.prog.mk> |