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
|
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_CPPFLAGS@ \
@LIBCSYSTEM_CPPFLAGS@ \
@PTHREAD_CPPFLAGS@ \
@LIBQCOW_DLL_IMPORT@
if HAVE_PYTHON
TESTS_PYQCOW = \
test_pyqcow_open_close.sh \
test_pyqcow_seek.sh
endif
TESTS = \
test_open_close.sh \
test_seek.sh \
test_read.sh \
test_qcowinfo.sh \
$(TESTS_PYQCOW)
check_SCRIPTS = \
pyqcow_test_open_close.py \
pyqcow_test_seek.py \
test_open_close.sh \
test_pyqcow_open_close.sh \
test_pyqcow_seek.sh \
test_qcowinfo.sh \
test_read.sh \
test_runner.sh \
test_seek.sh
EXTRA_DIST = \
$(check_SCRIPTS)
check_PROGRAMS = \
qcow_test_open_close \
qcow_test_read \
qcow_test_seek
qcow_test_open_close_SOURCES = \
qcow_test_libcerror.h \
qcow_test_libcstring.h \
qcow_test_libcsystem.h \
qcow_test_libqcow.h \
qcow_test_open_close.c \
qcow_test_unused.h
qcow_test_open_close_LDADD = \
@LIBCSYSTEM_LIBADD@ \
../libqcow/libqcow.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@ \
@PTHREAD_LIBADD@
qcow_test_read_SOURCES = \
qcow_test_libcerror.h \
qcow_test_libcstring.h \
qcow_test_libcsystem.h \
qcow_test_libcthreads.h \
qcow_test_libqcow.h \
qcow_test_read.c \
qcow_test_unused.h
qcow_test_read_LDADD = \
@LIBCSYSTEM_LIBADD@ \
../libqcow/libqcow.la \
@LIBCTHREADS_LIBADD@ \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@ \
@PTHREAD_LIBADD@
qcow_test_seek_SOURCES = \
qcow_test_libcerror.h \
qcow_test_libcstring.h \
qcow_test_libcsystem.h \
qcow_test_libqcow.h \
qcow_test_seek.c \
qcow_test_unused.h
qcow_test_seek_LDADD = \
@LIBCSYSTEM_LIBADD@ \
../libqcow/libqcow.la \
@LIBCERROR_LIBADD@ \
@LIBCSTRING_LIBADD@ \
@PTHREAD_LIBADD@
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f Makefile
|