1342084Smw#
2342084Smw#                          __  __            _
3342084Smw#                       ___\ \/ /_ __   __ _| |_
4342084Smw#                      / _ \\  /| '_ \ / _` | __|
5342084Smw#                     |  __//  \| |_) | (_| | |_
6342084Smw#                      \___/_/\_\ .__/ \__,_|\__|
7342084Smw#                               |_| XML parser
8342084Smw#
9342084Smw# Copyright (c) 2017 Expat development team
10342084Smw# Licensed under the MIT license:
11342084Smw#
12342084Smw# Permission is  hereby granted,  free of charge,  to any  person obtaining
13342084Smw# a  copy  of  this  software   and  associated  documentation  files  (the
14342084Smw# "Software"),  to  deal in  the  Software  without restriction,  including
15342084Smw# without  limitation the  rights  to use,  copy,  modify, merge,  publish,
16342084Smw# distribute, sublicense, and/or sell copies of the Software, and to permit
17342084Smw# persons  to whom  the Software  is  furnished to  do so,  subject to  the
18342084Smw# following conditions:
19342084Smw#
20342084Smw# The above copyright  notice and this permission notice  shall be included
21342084Smw# in all copies or substantial portions of the Software.
22342084Smw#
23342084Smw# THE  SOFTWARE  IS  PROVIDED  "AS  IS",  WITHOUT  WARRANTY  OF  ANY  KIND,
24342084Smw# EXPRESS  OR IMPLIED,  INCLUDING  BUT  NOT LIMITED  TO  THE WARRANTIES  OF
25342084Smw# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
26342084Smw# NO EVENT SHALL THE AUTHORS OR  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
27342084Smw# DAMAGES OR  OTHER LIABILITY, WHETHER  IN AN  ACTION OF CONTRACT,  TORT OR
28342084Smw# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
29342084Smw# USE OR OTHER DEALINGS IN THE SOFTWARE.
30342084Smw
31342084SmwSUBDIRS = . benchmark
32342084Smw
33342084SmwAM_CPPFLAGS = -I$(srcdir)/../lib
34342084Smw
35342084Smwnoinst_LIBRARIES = libruntests.a
36342084Smw
37346725Smwcheck_PROGRAMS = runtests runtestspp
38346725SmwTESTS = runtests runtestspp
39346725Smw
40346725Smw# To support MinGW and Non-MinGW at the same time:
41346725SmwLOG_DRIVER = $(srcdir)/../test-driver-wrapper.sh
42346725Smw
43346725Smwlibruntests_a_SOURCES = \
44346725Smw    chardata.c \
45346725Smw    structdata.c \
46346725Smw    memcheck.c \
47346725Smw    minicheck.c
48342084Smw
49346725Smwruntests_SOURCES = \
50346725Smw    runtests.c
51346725Smw
52346725Smwruntestspp_SOURCES = \
53346725Smw    runtestspp.cpp
54342084Smw
55346725Smwruntests_LDADD = libruntests.a ../lib/libexpat.la
56346725Smwruntestspp_LDADD = libruntests.a ../lib/libexpat.la
57346725Smw
58346725SmwEXTRA_DIST = \
59346725Smw    chardata.h \
60342084Smw    structdata.h \
61346725Smw    minicheck.h \
62346725Smw    memcheck.h \
63346725Smw    README.txt \
64346725Smw    udiffer.py \
65342084Smw    xmltest.log.expected \
66346725Smw    xmltest.sh
67346725Smw