1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/common \
@LIBCSTRING_CPPFLAGS@ \
@LIBCERROR_CPPFLAGS@ \
@LIBCTHREADS_CPPFLAGS@ \
@LIBCDATA_CPPFLAGS@ \
@LIBCLOCALE_CPPFLAGS@ \
@LIBCNOTIFY_CPPFLAGS@ \
@LIBCSPLIT_CPPFLAGS@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_DLL_IMPORT@
TESTS = \
test_handle_seek.sh \
test_handle_read.sh \
test_handle_write.sh \
test_pool_seek.sh \
test_pool_read.sh \
test_pool_write.sh
check_SCRIPTS = \
test_handle_seek.sh \
test_handle_read.sh \
test_handle_write.sh \
test_pool_read.sh \
test_pool_seek.sh \
test_pool_write.sh \
test_runner.sh
input_FILES = \
input/test.raw
EXTRA_DIST = \
$(check_SCRIPTS) \
$(input_FILES)
check_PROGRAMS = \
bfio_test_handle_read \
bfio_test_handle_seek \
bfio_test_handle_write \
bfio_test_pool_seek \
bfio_test_pool_read \
bfio_test_pool_write
bfio_test_handle_read_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcstring.h \
bfio_test_handle_read.c
bfio_test_handle_read_LDADD = \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
bfio_test_handle_seek_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcstring.h \
bfio_test_handle_seek.c
bfio_test_handle_seek_LDADD = \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
bfio_test_handle_write_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcpath.h \
bfio_test_libcstring.h \
bfio_test_handle_write.c
bfio_test_handle_write_LDADD = \
@LIBCPATH_LIBADD@ \
@LIBCSPLIT_LIBADD@ \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
bfio_test_pool_read_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcstring.h \
bfio_test_pool_read.c
bfio_test_pool_read_LDADD = \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
bfio_test_pool_seek_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcstring.h \
bfio_test_pool_seek.c
bfio_test_pool_seek_LDADD = \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
bfio_test_pool_write_SOURCES = \
bfio_test_libbfio.h \
bfio_test_libcerror.h \
bfio_test_libcstring.h \
bfio_test_libcpath.h \
bfio_test_pool_write.c
bfio_test_pool_write_LDADD = \
@LIBCPATH_LIBADD@ \
@LIBCSPLIT_LIBADD@ \
../libbfio/libbfio.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f Makefile
|