Makefile.am 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # __ __ _
  3. # ___\ \/ /_ __ __ _| |_
  4. # / _ \\ /| '_ \ / _` | __|
  5. # | __// \| |_) | (_| | |_
  6. # \___/_/\_\ .__/ \__,_|\__|
  7. # |_| XML parser
  8. #
  9. # Copyright (c) 2017-2021 Sebastian Pipping <[email protected]>
  10. # Copyright (c) 2017 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
  34. noinst_LIBRARIES = libruntests.a
  35. check_PROGRAMS = runtests runtestspp
  36. TESTS = runtests runtestspp
  37. # To support MinGW and Non-MinGW at the same time:
  38. LOG_DRIVER = $(srcdir)/../test-driver-wrapper.sh
  39. libruntests_a_SOURCES = \
  40. chardata.c \
  41. structdata.c \
  42. memcheck.c \
  43. minicheck.c
  44. runtests_SOURCES = \
  45. runtests.c
  46. runtestspp_SOURCES = \
  47. runtestspp.cpp
  48. runtests_LDADD = libruntests.a ../lib/libexpatinternal.la
  49. runtestspp_LDADD = libruntests.a ../lib/libexpatinternal.la
  50. runtests_LDFLAGS = @AM_LDFLAGS@ @LIBM@
  51. runtestspp_LDFLAGS = @AM_LDFLAGS@ @LIBM@
  52. EXTRA_DIST = \
  53. chardata.h \
  54. structdata.h \
  55. minicheck.h \
  56. memcheck.h \
  57. README.txt \
  58. udiffer.py \
  59. xmltest.log.expected \
  60. xmltest.sh