diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-27 16:32:32 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-27 16:32:32 (EST) |
commit | f77f1870b3d8403968a101d43327026f8c213281 (patch) | |
tree | f288edce1d6c5554bfa760ba17521b8663897958 | |
parent | 7b62eded62144d33f3bac73ece2f6265e2a42cce (diff) |
Move code from Makefile.am to tests/local.mk
-rw-r--r-- | Makefile.am | 14 | ||||
-rw-r--r-- | tests/local.mk | 12 |
2 files changed, 13 insertions, 13 deletions
diff --git a/Makefile.am b/Makefile.am index bfd8a12..9038c37 100644 --- a/Makefile.am +++ b/Makefile.am @@ -63,21 +63,9 @@ EXTRA_DIST = \ TODO \ autogen.sh \ mksysconf.in \ - $(TESTS) \ tools/shpp.sh \ tools/shld.sh \ - tools/shman.sh \ - build-aux/tap-driver.sh \ - tests/aux/tap-functions.sh - -TEST_EXTENSIONS = .sh -SH_LOG_DRIVER = \ - AM_TAP_AWK='$(AWK)' \ - TOP_SRCDIR="$(top_srcdir)" \ - TOP_BUILDDIR="$(top_builddir)" \ - SHSOEXT='$(SHSOEXT)' \ - LIBOPKBUILD_SHSOVERSION='$(libopkbuild_shsoversion)' \ - $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh + tools/shman.sh todo_code_script = \ /^[0-9]* .[ \t]*\#[ \t]*TODO/,/^[0-9]* \.[ \t]*[^ \t\#]/{ \ diff --git a/tests/local.mk b/tests/local.mk index 39b5669..20a65d5 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -4,3 +4,15 @@ TESTS = \ %reldir%/ob_reduce_deps.sh \ %reldir%/ob_arch_is_concerned.sh \ %reldir%/ob_plat_is_concerned.sh +TEST_EXTENSIONS = .sh +SH_LOG_DRIVER = \ + AM_TAP_AWK='$(AWK)' \ + TOP_SRCDIR="$(top_srcdir)" \ + TOP_BUILDDIR="$(top_builddir)" \ + SHSOEXT='$(SHSOEXT)' \ + LIBOPKBUILD_SHSOVERSION='$(libopkbuild_shsoversion)' \ + $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh +EXTRA_DIST += \ + $(TESTS) \ + build-aux/tap-driver.sh \ + tests/aux/tap-functions.sh |