diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2017-07-08 12:43:18 +0200 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2017-07-08 12:43:18 +0200 |
commit | af31551e1873f6719999cd103b9e9e46d4d00dc8 (patch) | |
tree | 7145193ad6a9593d8e2258636058602ec32640b4 | |
parent | 82e899fb21c116fa8303cabbc10d68bfa06fc89f (diff) | |
download | sshfs-af31551e1873f6719999cd103b9e9e46d4d00dc8.tar sshfs-af31551e1873f6719999cd103b9e9e46d4d00dc8.tar.gz sshfs-af31551e1873f6719999cd103b9e9e46d4d00dc8.tar.bz2 sshfs-af31551e1873f6719999cd103b9e9e46d4d00dc8.zip |
Include test files in "make dist"
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | test/Makefile.am | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 68491fb..1b938ef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,8 @@ bin_PROGRAMS = sshfs +SUBDIRS = test + sshfs_SOURCES = sshfs.c cache.c cache.h if FUSE_OPT_COMPAT sshfs_SOURCES += compat/fuse_opt.c compat/fuse_opt.h diff --git a/configure.ac b/configure.ac index e46234a..6b973f2 100644 --- a/configure.ac +++ b/configure.ac @@ -40,5 +40,5 @@ case "$osname" in esac AC_SUBST(IDMAP_DEFAULT) -AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([Makefile test/Makefile]) AC_OUTPUT diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..8cf26e2 --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,4 @@ +## Process this file with automake to produce Makefile.in + +EXTRA_DIST = meson.build conftest.py pytest.ini test_sshfs.py \ + util.py wrong_command.c |