]> wimlib.net Git - wimlib/blob - Makefile.am
d80bb7a611f362a105f0167da56252fac6c476d4
[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/reference.c         \
76         src/registry.c          \
77         src/reparse.c           \
78         src/resource.c          \
79         src/security.c          \
80         src/sha1.c              \
81         src/solid.c             \
82         src/split.c             \
83         src/tagged_items.c      \
84         src/template.c          \
85         src/textfile.c          \
86         src/timestamp.c         \
87         src/update_image.c      \
88         src/util.c              \
89         src/verify.c            \
90         src/wim.c               \
91         src/write.c             \
92         src/x86_cpu_features.c  \
93         src/xml.c               \
94         src/xml_windows.c       \
95         src/xpress_compress.c   \
96         src/xpress_decompress.c \
97         include/wimlib/alloca.h         \
98         include/wimlib/apply.h          \
99         include/wimlib/assert.h         \
100         include/wimlib/avl_tree.h       \
101         include/wimlib/bitops.h         \
102         include/wimlib/blob_table.h     \
103         include/wimlib/bt_matchfinder.h \
104         include/wimlib/capture.h        \
105         include/wimlib/case.h           \
106         include/wimlib/compiler.h       \
107         include/wimlib/compiler-gcc.h   \
108         include/wimlib/compressor_ops.h \
109         include/wimlib/compress_common.h        \
110         include/wimlib/chunk_compressor.h       \
111         include/wimlib/decompressor_ops.h       \
112         include/wimlib/decompress_common.h      \
113         include/wimlib/dentry.h         \
114         include/wimlib/divsufsort.h     \
115         include/wimlib/encoding.h       \
116         include/wimlib/endianness.h     \
117         include/wimlib/error.h          \
118         include/wimlib/file_io.h        \
119         include/wimlib/glob.h           \
120         include/wimlib/guid.h           \
121         include/wimlib/hc_matchfinder.h \
122         include/wimlib/header.h         \
123         include/wimlib/inode.h          \
124         include/wimlib/inode_table.h    \
125         include/wimlib/integrity.h      \
126         include/wimlib/lcpit_matchfinder.h      \
127         include/wimlib/list.h           \
128         include/wimlib/lz_extend.h      \
129         include/wimlib/lz_hash.h        \
130         include/wimlib/lzms_common.h    \
131         include/wimlib/lzms_constants.h \
132         include/wimlib/lzx_common.h     \
133         include/wimlib/lzx_constants.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/registry.h       \
140         include/wimlib/reparse.h        \
141         include/wimlib/resource.h       \
142         include/wimlib/security.h       \
143         include/wimlib/security_descriptor.h    \
144         include/wimlib/sha1.h           \
145         include/wimlib/solid.h          \
146         include/wimlib/textfile.h       \
147         include/wimlib/timestamp.h      \
148         include/wimlib/types.h          \
149         include/wimlib/unaligned.h      \
150         include/wimlib/unix_data.h      \
151         include/wimlib/util.h           \
152         include/wimlib/wim.h            \
153         include/wimlib/write.h          \
154         include/wimlib/x86_cpu_features.h       \
155         include/wimlib/xml.h            \
156         include/wimlib/xml_windows.h    \
157         include/wimlib/xpress_constants.h
158
159 if WITH_NTFS_3G
160 libwim_la_SOURCES += src/ntfs-3g_apply.c        \
161                      src/ntfs-3g_capture.c      \
162                      include/wimlib/ntfs_3g.h
163 endif
164
165 if WINDOWS_NATIVE_BUILD
166 libwim_la_SOURCES += src/wimboot.c                      \
167                      src/win32_common.c                 \
168                      src/win32_apply.c                  \
169                      src/win32_capture.c                \
170                      src/win32_replacements.c           \
171                      src/win32_vss.c                    \
172                      include/wimlib/wimboot.h           \
173                      include/wimlib/win32.h             \
174                      include/wimlib/win32_common.h      \
175                      include/wimlib/win32_vss.h         \
176                      include/wimlib/wof.h
177 else
178 libwim_la_SOURCES += src/unix_apply.c           \
179                      src/unix_capture.c
180 endif
181
182 libwim_la_CFLAGS =              \
183         $(AM_CFLAGS)            \
184         $(PTHREAD_CFLAGS)       \
185         $(LIBXML2_CFLAGS)       \
186         $(LIBNTFS_3G_CFLAGS)    \
187         $(LIBFUSE_CFLAGS)       \
188         $(LIBCRYPTO_CFLAGS)
189
190 libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 24:0:9
191
192 libwim_la_LIBADD =              \
193         $(PTHREAD_LIBS)         \
194         $(LIBXML2_LIBS)         \
195         $(LTLIBICONV)           \
196         $(LIBNTFS_3G_LIBS)      \
197         $(LIBFUSE_LIBS)         \
198         $(LIBRT_LIBS)           \
199         $(LIBCRYPTO_LIBS)
200
201 if ENABLE_SSSE3_SHA1
202 libwim_la_SOURCES += src/sha1-ssse3.asm
203 libwim_la_LIBADD += src/sha1-ssse3.lo
204
205 src/sha1-ssse3.lo:src/sha1-ssse3.asm
206         $(LIBTOOL) --mode=compile --tag NASM $(srcdir)/build-aux/nasm_lt.sh \
207         $(NASM) $(NAFLAGS) $(NASM_PLATFORM_FLAGS)                           \
208         -DINTEL_SHA1_UPDATE_FUNCNAME=$(NASM_SYMBOL_PREFIX)sha1_transform_blocks_ssse3       \
209         -DINTEL_SHA1_UPDATE_DEFAULT_DISPATCH=$(NASM_SYMBOL_PREFIX)sha1_transform_blocks_default  \
210         $< -o $@
211
212 EXTRA_DIST += build-aux/nasm_lt.sh
213 endif
214
215 ##############################################################################
216 #                               Programs                                     #
217 ##############################################################################
218
219 bin_PROGRAMS = wimlib-imagex
220 dist_bin_SCRIPTS = programs/mkwinpeimg
221
222 wimlib_imagex_SOURCES =         \
223         programs/imagex.c       \
224         include/wimlib.h        \
225         include/wimlib_tchar.h
226
227 if WINDOWS_NATIVE_BUILD
228 wimlib_imagex_SOURCES +=        \
229         programs/imagex-win32.c \
230         programs/imagex-win32.h \
231         programs/wgetopt.c      \
232         programs/wgetopt.h
233 endif
234
235 wimlib_imagex_CFLAGS = $(AM_CFLAGS) -Wno-deprecated-declarations
236
237 wimlib_imagex_LDADD = $(top_builddir)/libwim.la
238
239 wimlib_imagex_cmds =    \
240         append          \
241         apply           \
242         capture         \
243         delete          \
244         dir             \
245         export          \
246         extract         \
247         info            \
248         join            \
249         mount           \
250         mountrw         \
251         optimize        \
252         split           \
253         unmount         \
254         update          \
255         verify
256
257 ##############################################################################
258 #                                 Hooks                                      #
259 ##############################################################################
260
261 install-exec-hook:
262         for cmd in $(wimlib_imagex_cmds); do                            \
263                 cd $(DESTDIR)$(bindir) &&                               \
264                         ln -f wimlib-imagex wim$${cmd};                 \
265         done
266
267 install-data-hook:
268         for cmd in $(wimlib_imagex_cmds); do                            \
269                 cd $(DESTDIR)$(mandir)/man1 &&                          \
270                         ln -sf wimlib-imagex-$${cmd}.1 wim$${cmd}.1;    \
271         done
272
273 uninstall-hook:
274         for cmd in $(wimlib_imagex_cmds); do                            \
275                 rm -f $(DESTDIR)$(bindir)/wim$${cmd};                   \
276                 rm -f $(DESTDIR)$(mandir)/man1/wim$${cmd}.1;            \
277         done
278
279 ##############################################################################
280 #                               Documentation                                #
281 ##############################################################################
282
283 man1_MANS =                                     \
284         doc/man1/wimlib-imagex.1                \
285         doc/man1/wimlib-imagex-append.1         \
286         doc/man1/wimlib-imagex-apply.1          \
287         doc/man1/wimlib-imagex-capture.1        \
288         doc/man1/wimlib-imagex-delete.1         \
289         doc/man1/wimlib-imagex-dir.1            \
290         doc/man1/wimlib-imagex-export.1         \
291         doc/man1/wimlib-imagex-extract.1        \
292         doc/man1/wimlib-imagex-info.1           \
293         doc/man1/wimlib-imagex-join.1           \
294         doc/man1/wimlib-imagex-mount.1          \
295         doc/man1/wimlib-imagex-mountrw.1        \
296         doc/man1/wimlib-imagex-optimize.1       \
297         doc/man1/wimlib-imagex-split.1          \
298         doc/man1/wimlib-imagex-unmount.1        \
299         doc/man1/wimlib-imagex-update.1         \
300         doc/man1/wimlib-imagex-verify.1         \
301         doc/man1/mkwinpeimg.1
302
303 EXTRA_DIST += $(man1_MANS)
304
305 ##############################################################################
306 #                                 Tests                                      #
307 ##############################################################################
308
309 check_PROGRAMS = tests/tree-cmp
310 tests_tree_cmp_SOURCES = tests/tree-cmp.c
311
312 dist_check_SCRIPTS = tests/test-imagex \
313                      tests/test-imagex-capture_and_apply \
314                      tests/test-imagex-update_and_extract
315
316 if WITH_FUSE
317 dist_check_SCRIPTS += tests/test-imagex-mount
318 endif
319
320 if WITH_NTFS_3G
321 dist_check_SCRIPTS += tests/test-imagex-ntfs
322 endif
323
324 EXTRA_DIST +=                                   \
325         tests/common_tests.sh                   \
326         tests/tests-common.sh                   \
327         tests/security_descriptor_1.base64      \
328         tests/security_descriptor_1.bin         \
329         tests/security_descriptor_2.base64      \
330         tests/security_descriptor_2.bin
331
332 if WINDOWS_NATIVE_BUILD
333 # Tests are run manually for Windows builds.
334 TESTS =
335 else
336 TESTS = $(dist_check_SCRIPTS)
337 endif
338
339 ##############################################################################