File: Makefile.am

package info (click to toggle)
libewf 20140804-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,284 kB
  • sloc: ansic: 313,293; sh: 6,855; cpp: 3,819; makefile: 1,926; yacc: 1,094; python: 467; lex: 391; sed: 16
file content (175 lines) | stat: -rw-r--r-- 3,451 bytes parent folder | download
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCSTRING_CPPFLAGS@ \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCNOTIFY_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBCSYSTEM_CPPFLAGS@

if HAVE_PYTHON
TESTS_PYEWF = \
	test_pyewf.sh
endif

TESTS = \
	test_glob.sh \
	test_seek.sh \
	test_read.sh \
	test_write.sh \
	test_read_write.sh \
	test_read_write_delta.sh \
	test_ewfverify.sh \
	test_ewfverify_logical.sh \
	test_ewfacquire.sh \
	test_ewfacquire_optical.sh \
	test_ewfacquirestream.sh \
	test_ewfacquire_resume.sh \
	test_ewfinfo.sh \
	test_ewfexport.sh \
	test_ewfexport_logical.sh \
	$(TESTS_PYEWF)

check_SCRIPTS = \
	test_ewfacquire.sh \
	test_ewfacquire_optical.sh \
	test_ewfacquire_resume.sh \
	test_ewfacquirestream.sh \
	test_ewfinfo.sh \
	test_ewfexport.sh \
	test_ewfexport_logical.sh \
	test_ewfverify.sh \
	test_ewfverify_logical.sh \
	test_glob.sh \
	test_pyewf.sh \
	test_read.sh \
	test_read_write.sh \
	test_read_write_delta.sh \
	test_seek.sh \
	test_write.sh

EXTRA_DIST = \
	$(check_SCRIPTS)

check_PROGRAMS = \
	ewf_test_glob \
	ewf_test_read \
	ewf_test_read_write \
	ewf_test_read_write_delta \
	ewf_test_seek \
	ewf_test_truncate \
	ewf_test_write \
	ewf_test_write_chunk

ewf_test_glob_SOURCES = \
	ewf_test_glob.c \
	ewf_test_libcstring.h \
	ewf_test_libewf.h

ewf_test_glob_LDADD = \
	../libewf/libewf.la \
	@LIBCSTRING_LIBADD@

ewf_test_read_SOURCES = \
	ewf_test_definitions.h \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libewf.h \
	ewf_test_read.c

ewf_test_read_LDADD = \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_read_write_SOURCES = \
	ewf_test_definitions.h \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libcsystem.h \
	ewf_test_libewf.h \
	ewf_test_read_write.c

ewf_test_read_write_LDADD = \
	@LIBCSYSTEM_LIBADD@ \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_read_write_delta_SOURCES = \
	ewf_test_definitions.h \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libcsystem.h \
	ewf_test_libewf.h \
	ewf_test_read_write_delta.c

ewf_test_read_write_delta_LDADD = \
	@LIBCSYSTEM_LIBADD@ \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_seek_SOURCES = \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libewf.h \
	ewf_test_seek.c

ewf_test_seek_LDADD = \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_truncate_SOURCES = \
	ewf_test_libcerror.h \
	ewf_test_libcfile.h \
	ewf_test_libcnotify.h \
	ewf_test_libcstring.h \
	ewf_test_libcsystem.h \
	ewf_test_truncate.c

ewf_test_truncate_LDADD = \
	@LIBCSYSTEM_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_write_SOURCES = \
	ewf_test_definitions.h \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libewf.h \
	ewf_test_write.c

ewf_test_write_LDADD = \
	@LIBCSYSTEM_LIBADD@ \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

ewf_test_write_chunk_SOURCES = \
	ewf_test_definitions.h \
	ewf_test_libcerror.h \
	ewf_test_libcstring.h \
	ewf_test_libewf.h \
	ewf_test_libcsystem.h \
	ewf_test_write_chunk.c

ewf_test_write_chunk_LDADD = \
	@LIBCSYSTEM_LIBADD@ \
	../libewf/libewf.la \
	@LIBCERROR_LIBADD@ \
	@LIBCSTRING_LIBADD@

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f Makefile