]> wimlib.net Git - wimlib/blob - Makefile.am
Use list_replace() instead of list_transfer()
[wimlib] / Makefile.am
1 ##############################################################################
2 #                               General                                      #
3 ##############################################################################
4
5
6 ACLOCAL_AMFLAGS = -I m4
7
8 AM_CPPFLAGS     = -I$(top_srcdir)/include $(PLATFORM_CPPFLAGS)  \
9                   -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
10
11 # Note: -std=gnu99 instead of -std=c99 is needed for unnamed structs and unions,
12 # which are in C11 but not C99.  But we can't yet actually use -std=c11 because
13 # we want to support older versions of gcc.
14 AM_CFLAGS       = -std=gnu99 $(PLATFORM_CFLAGS) -fno-common     \
15                   -Wmissing-prototypes -Wstrict-prototypes      \
16                   -Wundef -Wno-pointer-sign
17
18 AM_LDFLAGS      = $(PLATFORM_LDFLAGS)
19
20 EXTRA_DIST      = README README.WINDOWS                         \
21                   COPYING COPYING.GPLv3 COPYING.LGPLv3          \
22                   examples                                      \
23                   archlinux debian rpm
24
25 ##############################################################################
26 #                               Library                                      #
27 ##############################################################################
28
29 lib_LTLIBRARIES = libwim.la
30 include_HEADERS = include/wimlib.h
31
32 pkgconfigdir    = @pkgconfigdir@
33 pkgconfig_DATA  = wimlib.pc
34 wimlib.pc: config.status
35
36 libwim_la_SOURCES =             \
37         src/add_image.c         \
38         src/avl_tree.c          \
39         src/blob_table.c        \
40         src/capture_common.c    \
41         src/compress.c          \
42         src/compress_common.c   \
43         src/compress_parallel.c \
44         src/compress_serial.c   \
45         src/decompress.c        \
46         src/decompress_common.c \
47         src/delete_image.c      \
48         src/dentry.c            \
49         src/divsufsort.c        \
50         src/encoding.c          \
51         src/error.c             \
52         src/export_image.c      \
53         src/extract.c           \
54         src/file_io.c           \
55         src/header.c            \
56         src/inode.c             \
57         src/inode_fixup.c       \
58         src/inode_table.c       \
59         src/integrity.c         \
60         src/iterate_dir.c       \
61         src/join.c              \
62         src/lcpit_matchfinder.c \
63         src/lzms_common.c       \
64         src/lzms_compress.c     \
65         src/lzms_decompress.c   \
66         src/lzx_common.c        \
67         src/lzx_compress.c      \
68         src/lzx_decompress.c    \
69         src/metadata_resource.c \
70         src/mount_image.c       \
71         src/pathlist.c          \
72         src/paths.c             \
73         src/pattern.c           \
74         src/progress.c          \
75         src/resource.c          \
76         src/reference.c         \
77         src/security.c          \
78         src/sha1.c              \
79         src/solid.c             \
80         src/split.c             \
81         src/reparse.c           \
82         src/tagged_items.c      \
83         src/template.c          \
84         src/textfile.c          \
85         src/timestamp.c         \
86         src/update_image.c      \
87         src/util.c              \
88         src/verify.c            \
89         src/wim.c               \
90         src/write.c             \
91         src/xml.c               \
92         src/xpress_compress.c   \
93         src/xpress_decompress.c \
94         include/wimlib/alloca.h         \
95         include/wimlib/apply.h          \
96         include/wimlib/assert.h         \
97         include/wimlib/avl_tree.h       \
98         include/wimlib/bitops.h         \
99         include/wimlib/blob_table.h     \
100         include/wimlib/bt_matchfinder.h \
101         include/wimlib/capture.h        \
102         include/wimlib/case.h           \
103         include/wimlib/compiler.h       \
104         include/wimlib/compiler-gcc.h   \
105         include/wimlib/compressor_ops.h \
106         include/wimlib/compress_common.h        \
107         include/wimlib/chunk_compressor.h       \
108         include/wimlib/decompressor_ops.h       \
109         include/wimlib/decompress_common.h      \
110         include/wimlib/dentry.h         \
111         include/wimlib/divsufsort.h     \
112         include/wimlib/encoding.h       \
113         include/wimlib/endianness.h     \
114         include/wimlib/error.h          \
115         include/wimlib/file_io.h        \
116         include/wimlib/glob.h           \
117         include/wimlib/guid.h           \
118         include/wimlib/hc_matchfinder.h \
119         include/wimlib/header.h         \
120         include/wimlib/inode.h          \
121         include/wimlib/inode_table.h    \
122         include/wimlib/integrity.h      \
123         include/wimlib/lcpit_matchfinder.h      \
124         include/wimlib/list.h           \
125         include/wimlib/lz_extend.h      \
126         include/wimlib/lz_hash.h        \
127         include/wimlib/lzms_common.h    \
128         include/wimlib/lzms_constants.h \
129         include/wimlib/lzx_common.h     \
130         include/wimlib/lzx_constants.h  \
131         include/wimlib/matchfinder_avx2.h       \
132         include/wimlib/matchfinder_common.h     \
133         include/wimlib/matchfinder_sse2.h       \
134         include/wimlib/metadata.h       \
135         include/wimlib/pathlist.h       \
136         include/wimlib/paths.h          \
137         include/wimlib/pattern.h        \
138         include/wimlib/progress.h       \
139         include/wimlib/reparse.h        \
140         include/wimlib/resource.h       \
141         include/wimlib/security.h       \
142         include/wimlib/security_descriptor.h    \
143         include/wimlib/sha1.h           \
144         include/wimlib/solid.h          \
145         include/wimlib/textfile.h       \
146         include/wimlib/timestamp.h      \
147         include/wimlib/types.h          \
148         include/wimlib/unaligned.h      \
149         include/wimlib/unix_data.h      \
150         include/wimlib/util.h           \
151         include/wimlib/wim.h            \
152         include/wimlib/write.h          \
153         include/wimlib/xml.h            \
154         include/wimlib/xpress_constants.h
155
156 if WITH_NTFS_3G
157 libwim_la_SOURCES += src/ntfs-3g_apply.c        \
158                      src/ntfs-3g_capture.c      \
159                      include/wimlib/ntfs_3g.h
160 endif
161
162 if WINDOWS_NATIVE_BUILD
163 libwim_la_SOURCES += src/win32_common.c                 \
164                      src/win32_apply.c                  \
165                      src/win32_capture.c                \
166                      src/win32_replacements.c           \
167                      src/wimboot.c                      \
168                      include/wimlib/win32_common.h      \
169                      include/wimlib/win32.h             \
170                      include/wimlib/wimboot.h           \
171                      include/wimlib/wof.h
172 else
173 libwim_la_SOURCES += src/unix_apply.c           \
174                      src/unix_capture.c
175 endif
176
177 libwim_la_CFLAGS =              \
178         $(AM_CFLAGS)            \
179         $(PTHREAD_CFLAGS)       \
180         $(LIBXML2_CFLAGS)       \
181         $(LIBNTFS_3G_CFLAGS)    \
182         $(LIBFUSE_CFLAGS)       \
183         $(LIBCRYPTO_CFLAGS)
184
185 libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 21:0:6
186
187 libwim_la_LIBADD =              \
188         $(PTHREAD_LIBS)         \
189         $(LIBXML2_LIBS)         \
190         $(LTLIBICONV)           \
191         $(LIBNTFS_3G_LIBS)      \
192         $(LIBFUSE_LIBS)         \
193         $(LIBRT_LIBS)           \
194         $(LIBCRYPTO_LIBS)
195
196 if ENABLE_SSSE3_SHA1
197 libwim_la_SOURCES += src/sha1-ssse3.asm
198 libwim_la_LIBADD += src/sha1-ssse3.lo
199
200 src/sha1-ssse3.lo:src/sha1-ssse3.asm
201         $(LIBTOOL) --mode=compile --tag NASM $(srcdir)/build-aux/nasm_lt.sh \
202         $(NASM) $(NAFLAGS) $(NASM_PLATFORM_FLAGS)                           \
203         -DINTEL_SHA1_UPDATE_FUNCNAME=$(NASM_SYMBOL_PREFIX)sha1_transform_blocks_ssse3       \
204         -DINTEL_SHA1_UPDATE_DEFAULT_DISPATCH=$(NASM_SYMBOL_PREFIX)sha1_transform_blocks_default  \
205         $< -o $@
206
207 EXTRA_DIST += build-aux/nasm_lt.sh
208 endif
209
210 ##############################################################################
211 #                               Programs                                     #
212 ##############################################################################
213
214 bin_PROGRAMS = wimlib-imagex
215 dist_bin_SCRIPTS = programs/mkwinpeimg
216
217 wimlib_imagex_SOURCES =         \
218         programs/imagex.c       \
219         include/wimlib.h        \
220         include/wimlib_tchar.h
221
222 if WINDOWS_NATIVE_BUILD
223 wimlib_imagex_SOURCES +=        \
224         programs/imagex-win32.c \
225         programs/imagex-win32.h \
226         programs/wgetopt.c      \
227         programs/wgetopt.h
228 endif
229
230 wimlib_imagex_CFLAGS = $(AM_CFLAGS) -Wno-deprecated-declarations
231
232 wimlib_imagex_LDADD = $(top_builddir)/libwim.la
233
234 wimlib_imagex_cmds =    \
235         append          \
236         apply           \
237         capture         \
238         delete          \
239         dir             \
240         export          \
241         extract         \
242         info            \
243         join            \
244         mount           \
245         mountrw         \
246         optimize        \
247         split           \
248         unmount         \
249         update          \
250         verify
251
252 ##############################################################################
253 #                                 Hooks                                      #
254 ##############################################################################
255
256 install-exec-hook:
257         for cmd in $(wimlib_imagex_cmds); do                            \
258                 cd $(DESTDIR)$(bindir) &&                               \
259                         ln -f wimlib-imagex wim$${cmd};                 \
260         done
261
262 install-data-hook:
263         for cmd in $(wimlib_imagex_cmds); do                            \
264                 cd $(DESTDIR)$(mandir)/man1 &&                          \
265                         ln -sf wimlib-imagex-$${cmd}.1 wim$${cmd}.1;    \
266         done
267
268 uninstall-hook:
269         for cmd in $(wimlib_imagex_cmds); do                            \
270                 rm -f $(DESTDIR)$(bindir)/wim$${cmd};                   \
271                 rm -f $(DESTDIR)$(mandir)/man1/wim$${cmd}.1;            \
272         done
273
274 ##############################################################################
275 #                               Documentation                                #
276 ##############################################################################
277
278 man1_MANS =                                     \
279         doc/man1/wimlib-imagex.1                \
280         doc/man1/wimlib-imagex-append.1         \
281         doc/man1/wimlib-imagex-apply.1          \
282         doc/man1/wimlib-imagex-capture.1        \
283         doc/man1/wimlib-imagex-delete.1         \
284         doc/man1/wimlib-imagex-dir.1            \
285         doc/man1/wimlib-imagex-export.1         \
286         doc/man1/wimlib-imagex-extract.1        \
287         doc/man1/wimlib-imagex-info.1           \
288         doc/man1/wimlib-imagex-join.1           \
289         doc/man1/wimlib-imagex-mount.1          \
290         doc/man1/wimlib-imagex-mountrw.1        \
291         doc/man1/wimlib-imagex-optimize.1       \
292         doc/man1/wimlib-imagex-split.1          \
293         doc/man1/wimlib-imagex-unmount.1        \
294         doc/man1/wimlib-imagex-update.1         \
295         doc/man1/wimlib-imagex-verify.1         \
296         doc/man1/mkwinpeimg.1
297
298 EXTRA_DIST += $(man1_MANS)
299
300 ##############################################################################
301 #                                 Tests                                      #
302 ##############################################################################
303
304 check_PROGRAMS = tests/tree-cmp
305 tests_tree_cmp_SOURCES = tests/tree-cmp.c
306
307 dist_check_SCRIPTS = tests/test-imagex \
308                      tests/test-imagex-capture_and_apply \
309                      tests/test-imagex-update_and_extract
310
311 if WITH_FUSE
312 dist_check_SCRIPTS += tests/test-imagex-mount
313 endif
314
315 if WITH_NTFS_3G
316 dist_check_SCRIPTS += tests/test-imagex-ntfs
317 endif
318
319 EXTRA_DIST +=                                   \
320         tests/common_tests.sh                   \
321         tests/tests-common.sh                   \
322         tests/security_descriptor_1.base64      \
323         tests/security_descriptor_1.bin         \
324         tests/security_descriptor_2.base64      \
325         tests/security_descriptor_2.bin
326
327 if WINDOWS_NATIVE_BUILD
328 # Tests are run manually for Windows builds.
329 TESTS =
330 else
331 TESTS = $(dist_check_SCRIPTS)
332 endif
333
334 ##############################################################################