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