diff options
Diffstat (limited to 'testsuite/inputs')
-rw-r--r-- | testsuite/inputs/clean | 7 | ||||
-rw-r--r-- | testsuite/inputs/default_build | 6 | ||||
-rw-r--r-- | testsuite/inputs/distclean | 7 |
3 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/inputs/clean b/testsuite/inputs/clean new file mode 100644 index 0000000..ab322cc --- /dev/null +++ b/testsuite/inputs/clean @@ -0,0 +1,7 @@ +cd "${srcdir}" +if [ "${relative_builddir}" != . ] ; then + make configure builddir="${relative_builddir}" + cd "${relative_builddir}" +fi +make +make clean diff --git a/testsuite/inputs/default_build b/testsuite/inputs/default_build new file mode 100644 index 0000000..7ff31f7 --- /dev/null +++ b/testsuite/inputs/default_build @@ -0,0 +1,6 @@ +cd "${srcdir}" +if [ "${relative_builddir}" != . ] ; then + make configure builddir="${relative_builddir}" + cd "${relative_builddir}" +fi +make diff --git a/testsuite/inputs/distclean b/testsuite/inputs/distclean new file mode 100644 index 0000000..6e1119b --- /dev/null +++ b/testsuite/inputs/distclean @@ -0,0 +1,7 @@ +cd "${srcdir}" +if [ "${relative_builddir}" != . ] ; then + make configure builddir="${relative_builddir}" + cd "${relative_builddir}" +fi +make +make distclean |