Makefile.am 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. #
  2. # __ __ _
  3. # ___\ \/ /_ __ __ _| |_
  4. # / _ \\ /| '_ \ / _` | __|
  5. # | __// \| |_) | (_| | |_
  6. # \___/_/\_\ .__/ \__,_|\__|
  7. # |_| XML parser
  8. #
  9. # Copyright (c) 2017-2024 Sebastian Pipping <[email protected]>
  10. # Copyright (c) 2017-2022 Rhodri James <[email protected]>
  11. # Copyright (c) 2020 Jeffrey Walton <[email protected]>
  12. # Copyright (c) 2024 Dag-Erling Smørgrav <[email protected]>
  13. # Licensed under the MIT license:
  14. #
  15. # Permission is hereby granted, free of charge, to any person obtaining
  16. # a copy of this software and associated documentation files (the
  17. # "Software"), to deal in the Software without restriction, including
  18. # without limitation the rights to use, copy, modify, merge, publish,
  19. # distribute, sublicense, and/or sell copies of the Software, and to permit
  20. # persons to whom the Software is furnished to do so, subject to the
  21. # following conditions:
  22. #
  23. # The above copyright notice and this permission notice shall be included
  24. # in all copies or substantial portions of the Software.
  25. #
  26. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  27. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  28. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  29. # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  30. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  31. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  32. # USE OR OTHER DEALINGS IN THE SOFTWARE.
  33. SUBDIRS = . benchmark
  34. AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(srcdir)/../lib -DXML_TESTING
  35. check_PROGRAMS = runtests runtests_cxx
  36. TESTS = runtests runtests_cxx
  37. # To support MinGW and Non-MinGW at the same time:
  38. LOG_DRIVER = $(srcdir)/../test-driver-wrapper.sh
  39. runtests_SOURCES = \
  40. acc_tests.c \
  41. alloc_tests.c \
  42. basic_tests.c \
  43. chardata.c \
  44. common.c \
  45. dummy.c \
  46. handlers.c \
  47. memcheck.c \
  48. minicheck.c \
  49. misc_tests.c \
  50. ns_tests.c \
  51. nsalloc_tests.c \
  52. runtests.c \
  53. structdata.c
  54. runtests_cxx_SOURCES = \
  55. acc_tests_cxx.cpp \
  56. alloc_tests_cxx.cpp \
  57. basic_tests_cxx.cpp \
  58. chardata_cxx.cpp \
  59. common_cxx.cpp \
  60. dummy_cxx.cpp \
  61. handlers_cxx.cpp \
  62. memcheck_cxx.cpp \
  63. minicheck_cxx.cpp \
  64. misc_tests_cxx.cpp \
  65. nsalloc_tests_cxx.cpp \
  66. ns_tests_cxx.cpp \
  67. runtests_cxx.cpp \
  68. structdata_cxx.cpp
  69. runtests_LDADD = ../lib/libtestpat.la
  70. runtests_cxx_LDADD = ../lib/libtestpat.la
  71. runtests_LDFLAGS = @AM_LDFLAGS@ @LIBM@
  72. runtests_cxx_LDFLAGS = @AM_LDFLAGS@ @LIBM@
  73. EXTRA_DIST = \
  74. acc_tests.h \
  75. alloc_tests.h \
  76. basic_tests.h \
  77. chardata.h \
  78. common.h \
  79. dummy.h \
  80. handlers.h \
  81. misc_tests.h \
  82. ns_tests.h \
  83. nsalloc_tests.h \
  84. structdata.h \
  85. minicheck.h \
  86. memcheck.h \
  87. README.md \
  88. udiffer.py \
  89. xmltest.log.expected \
  90. xmltest.sh