Imported Upstream version 2.4.0
[platform/upstream/expat.git] / Makefile.am
1 #
2 #                          __  __            _
3 #                       ___\ \/ /_ __   __ _| |_
4 #                      / _ \\  /| '_ \ / _` | __|
5 #                     |  __//  \| |_) | (_| | |_
6 #                      \___/_/\_\ .__/ \__,_|\__|
7 #                               |_| XML parser
8 #
9 # Copyright (c) 2017-2021 Sebastian Pipping <sebastian@pipping.org>
10 # Copyright (c) 2018      KangLin <kl222@126.com>
11 # Licensed under the MIT license:
12 #
13 # Permission is  hereby granted,  free of charge,  to any  person obtaining
14 # a  copy  of  this  software   and  associated  documentation  files  (the
15 # "Software"),  to  deal in  the  Software  without restriction,  including
16 # without  limitation the  rights  to use,  copy,  modify, merge,  publish,
17 # distribute, sublicense, and/or sell copies of the Software, and to permit
18 # persons  to whom  the Software  is  furnished to  do so,  subject to  the
19 # following conditions:
20 #
21 # The above copyright  notice and this permission notice  shall be included
22 # in all copies or substantial portions of the Software.
23 #
24 # THE  SOFTWARE  IS  PROVIDED  "AS  IS",  WITHOUT  WARRANTY  OF  ANY  KIND,
25 # EXPRESS  OR IMPLIED,  INCLUDING  BUT  NOT LIMITED  TO  THE WARRANTIES  OF
26 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
27 # NO EVENT SHALL THE AUTHORS OR  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
28 # DAMAGES OR  OTHER LIABILITY, WHETHER  IN AN  ACTION OF CONTRACT,  TORT OR
29 # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
30 # USE OR OTHER DEALINGS IN THE SOFTWARE.
31
32 AUTOMAKE_OPTIONS = \
33     dist-bzip2 \
34     dist-lzip \
35     dist-xz \
36     foreign \
37     subdir-objects
38
39 ACLOCAL_AMFLAGS = -I m4
40 LIBTOOLFLAGS = --verbose
41
42 SUBDIRS = lib # lib goes first to build first
43 if WITH_EXAMPLES
44 SUBDIRS += examples
45 endif
46 if WITH_TESTS
47 SUBDIRS += tests  
48 endif
49 if WITH_XMLWF
50 SUBDIRS += xmlwf doc
51 endif
52
53 pkgconfig_DATA = expat.pc
54 pkgconfigdir = $(libdir)/pkgconfig
55
56
57 dist_cmake_DATA = \
58     cmake/autotools/expat.cmake
59
60 nodist_cmake_DATA = \
61     cmake/autotools/expat-config-version.cmake \
62     cmake/autotools/expat-noconfig.cmake \
63     cmake/expat-config.cmake
64
65 cmakedir = $(libdir)/cmake/expat-@PACKAGE_VERSION@
66
67
68 _EXTRA_DIST_CMAKE = \
69     cmake/autotools/expat-noconfig__linux.cmake.in \
70     cmake/autotools/expat-noconfig__macos.cmake.in \
71     cmake/autotools/expat-noconfig__windows.cmake.in \
72     cmake/autotools/expat-package-init.cmake \
73     cmake/mingw-toolchain.cmake \
74     \
75     CMakeLists.txt \
76     CMake.README \
77     ConfigureChecks.cmake \
78     expat_config.h.cmake
79
80 _EXTRA_DIST_WINDOWS = \
81     win32/build_expat_iss.bat \
82     win32/expat.iss \
83     win32/MANIFEST.txt \
84     win32/README.txt
85
86 EXTRA_DIST = \
87     $(_EXTRA_DIST_CMAKE) \
88     $(_EXTRA_DIST_WINDOWS) \
89     \
90     conftools/expat.m4 \
91     conftools/get-version.sh \
92     \
93     xmlwf/xmlwf_helpgen.py \
94     xmlwf/xmlwf_helpgen.sh \
95     \
96     Changes \
97     README.md \
98     \
99     fix-xmltest-log.sh \
100     test-driver-wrapper.sh
101
102
103 .PHONY: buildlib
104 buildlib:
105         @echo 'ERROR: Running "make buildlib LIBRARY=libexpatw.la"' >&2
106         @echo 'ERROR: is no longer supported.  INSTEAD please:' >&2
107         @echo 'ERROR:' >&2
108         @echo 'ERROR:  * Mass-patch Makefile.am, e.g.' >&2
109         @echo 'ERROR:    # find -name Makefile.am -exec sed \' >&2
110         @echo 'ERROR:          -e "s,libexpat\.la,libexpatw.la," \' >&2
111         @echo 'ERROR:          -e "s,libexpat_la,libexpatw_la," \' >&2
112         @echo 'ERROR:          -i {} +' >&2
113         @echo 'ERROR:' >&2
114         @echo 'ERROR:  * Run automake to re-generate Makefile.in files' >&2
115         @echo 'ERROR:' >&2
116         @echo 'ERROR:  * Use "./configure --without-xmlwf" and/or' >&2
117         @echo 'ERROR:    "make -C lib all install" to bypass compilation' >&2
118         @echo 'ERROR:    of xmlwf (e.g. with -DXML_UNICODE)' >&2
119         @echo 'ERROR:' >&2
120         @false
121
122
123 .PHONY: run-benchmark
124 run-benchmark:
125         $(MAKE) -C tests/benchmark
126         ./run.sh tests/benchmark/benchmark@EXEEXT@ -n $(top_srcdir)/../testdata/largefiles/recset.xml 65535 3
127
128 .PHONY: download-xmlts-zip
129 download-xmlts-zip:
130         if test "$(XMLTS_ZIP)" = ""; then \
131                 wget --output-document=tests/xmlts.zip \
132                         https://www.w3.org/XML/Test/xmlts20080827.zip; \
133         else \
134                 cp $(XMLTS_ZIP) tests/xmlts.zip; \
135         fi
136
137 tests/xmlts.zip:
138         $(MAKE) download-xmlts-zip
139
140 .PHONY: extract-xmlts-zip
141 extract-xmlts-zip: tests/xmlts.zip
142         [ -f $(builddir)/tests/xmlts.zip ] || $(MAKE) download-xmlts-zip  # vpath workaround
143         cd tests && unzip -q xmlts.zip
144
145 tests/xmlconf: tests/xmlts.zip
146         $(MAKE) extract-xmlts-zip
147
148 .PHONY: run-xmltest
149 run-xmltest: tests/xmlconf
150 if WITH_XMLWF
151         [ -d $(builddir)/tests/xmlconf ] || $(MAKE) extract-xmlts-zip  # vpath workaround
152         $(MAKE) -C lib
153         $(MAKE) -C xmlwf
154         $(srcdir)/tests/xmltest.sh "$(abs_builddir)/run.sh $(abs_builddir)/xmlwf/xmlwf@EXEEXT@" 2>&1 | tee $(builddir)/tests/xmltest.log
155         $(srcdir)/fix-xmltest-log.sh $(builddir)/tests/xmltest.log
156         diff -u $(srcdir)/tests/xmltest.log.expected $(builddir)/tests/xmltest.log
157 else
158         @echo 'ERROR: xmlwf is needed for "make run-xmltest".' >&2
159         @echo 'ERROR: Please re-configure without --without-xmlwf.' >&2
160         @false
161 endif
162
163 .PHONY: qa
164 qa:
165         QA_COMPILER=clang QA_SANITIZER=address   ./qa.sh
166         QA_COMPILER=clang QA_SANITIZER=memory    ./qa.sh
167         QA_COMPILER=clang QA_SANITIZER=undefined ./qa.sh
168         QA_COMPILER=gcc   QA_PROCESSOR=gcov      ./qa.sh