summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2014-09-07 10:09:04 -0700
committerJim Meyering <meyering@fb.com>2014-11-30 18:59:33 -0800
commite9a211194e8a241f8ab50b92f2f226d33b91de76 (patch)
tree0bfccfb1e6d26aeb1cfa8a709d445534dc3219a1
parentd5526d4ad8d6597aea992041dba7e073205aefed (diff)
downloadsed-e9a211194e8a241f8ab50b92f2f226d33b91de76.tar.gz
tests: hook up gnulib-tests
* Makefile.am (SUBDIRS): Add gnulib-tests. * gnulib-tests/Makefile.am: New file. * configure.ac (AC_CONFIG_FILES): Add gnulib-tests/Makefile. * .gitignore: Ignore all but Makefile.am.
-rw-r--r--.gitignore2
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac12
-rw-r--r--gnulib-tests/Makefile.am1
4 files changed, 13 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 852cc14..276baed 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,8 @@
*/.deps/
*~
+*
+/gnulib-tests/*
+!/gnulib-tests/Makefile.am
/ChangeLog
/GNUmakefile
/README-release
diff --git a/Makefile.am b/Makefile.am
index a198e95..e6ee9b2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@
PACKAGE = sed
-SUBDIRS = lib po sed doc testsuite
+SUBDIRS = lib po sed doc testsuite gnulib-tests
noinst_DATA =
noinst_HEADERS = basicdefs.h
diff --git a/configure.ac b/configure.ac
index 3918194..1801b73 100644
--- a/configure.ac
+++ b/configure.ac
@@ -186,7 +186,13 @@ esac
AC_SUBST([XFAIL_TESTS])
AC_CONFIG_FILES([testsuite/version.good:testsuite/version.gin])
-AC_CONFIG_FILES([Makefile doc/Makefile \
-lib/Makefile sed/Makefile testsuite/Makefile \
-po/Makefile.in])
+AC_CONFIG_FILES([
+ Makefile
+ doc/Makefile
+ lib/Makefile
+ sed/Makefile
+ testsuite/Makefile
+ gnulib-tests/Makefile
+ po/Makefile.in
+])
AC_OUTPUT
diff --git a/gnulib-tests/Makefile.am b/gnulib-tests/Makefile.am
new file mode 100644
index 0000000..6635f70
--- /dev/null
+++ b/gnulib-tests/Makefile.am
@@ -0,0 +1 @@
+include gnulib.mk