diff options
Diffstat (limited to '3rdparty/expat/tests/Makefile.am')
-rw-r--r-- | 3rdparty/expat/tests/Makefile.am | 65 |
1 files changed, 49 insertions, 16 deletions
diff --git a/3rdparty/expat/tests/Makefile.am b/3rdparty/expat/tests/Makefile.am index e19fc1ae8ad..3b1b15302a6 100644 --- a/3rdparty/expat/tests/Makefile.am +++ b/3rdparty/expat/tests/Makefile.am @@ -6,7 +6,10 @@ # \___/_/\_\ .__/ \__,_|\__| # |_| XML parser # -# Copyright (c) 2017 Expat development team +# Copyright (c) 2017-2024 Sebastian Pipping <sebastian@pipping.org> +# Copyright (c) 2017-2022 Rhodri James <rhodri@wildebeest.org.uk> +# Copyright (c) 2020 Jeffrey Walton <noloader@gmail.com> +# Copyright (c) 2024 Dag-Erling Smørgrav <des@des.dev> # Licensed under the MIT license: # # Permission is hereby granted, free of charge, to any person obtaining @@ -30,37 +33,67 @@ SUBDIRS = . benchmark -AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(srcdir)/../lib +AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(srcdir)/../lib -DXML_TESTING -noinst_LIBRARIES = libruntests.a - -check_PROGRAMS = runtests runtestspp -TESTS = runtests runtestspp +check_PROGRAMS = runtests runtests_cxx +TESTS = runtests runtests_cxx # To support MinGW and Non-MinGW at the same time: LOG_DRIVER = $(srcdir)/../test-driver-wrapper.sh -libruntests_a_SOURCES = \ +runtests_SOURCES = \ + acc_tests.c \ + alloc_tests.c \ + basic_tests.c \ chardata.c \ - structdata.c \ + common.c \ + dummy.c \ + handlers.c \ memcheck.c \ - minicheck.c + minicheck.c \ + misc_tests.c \ + ns_tests.c \ + nsalloc_tests.c \ + runtests.c \ + structdata.c -runtests_SOURCES = \ - runtests.c +runtests_cxx_SOURCES = \ + acc_tests_cxx.cpp \ + alloc_tests_cxx.cpp \ + basic_tests_cxx.cpp \ + chardata_cxx.cpp \ + common_cxx.cpp \ + dummy_cxx.cpp \ + handlers_cxx.cpp \ + memcheck_cxx.cpp \ + minicheck_cxx.cpp \ + misc_tests_cxx.cpp \ + nsalloc_tests_cxx.cpp \ + ns_tests_cxx.cpp \ + runtests_cxx.cpp \ + structdata_cxx.cpp -runtestspp_SOURCES = \ - runtestspp.cpp +runtests_LDADD = ../lib/libtestpat.la +runtests_cxx_LDADD = ../lib/libtestpat.la -runtests_LDADD = libruntests.a ../lib/libexpat.la -runtestspp_LDADD = libruntests.a ../lib/libexpat.la +runtests_LDFLAGS = @AM_LDFLAGS@ @LIBM@ +runtests_cxx_LDFLAGS = @AM_LDFLAGS@ @LIBM@ EXTRA_DIST = \ + acc_tests.h \ + alloc_tests.h \ + basic_tests.h \ chardata.h \ + common.h \ + dummy.h \ + handlers.h \ + misc_tests.h \ + ns_tests.h \ + nsalloc_tests.h \ structdata.h \ minicheck.h \ memcheck.h \ - README.txt \ + README.md \ udiffer.py \ xmltest.log.expected \ xmltest.sh |