Makefile.am 2.9 KB

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