diff options
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | configure.ac | 11 | ||||
-rw-r--r-- | src/Makefile-files | 6 |
4 files changed, 29 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4183d82 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*~ +Makefile.in +Makefile +aclocal.m4 +auto-aux +autom4te.cache +configure diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f4d5f96 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,5 @@ +bin_SCRIPTS = +man_MANS = +EXTRA_DIST = + +include src/Makefile-files diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..c951e60 --- /dev/null +++ b/configure.ac @@ -0,0 +1,11 @@ +AC_PREREQ(2.61) +AC_INIT([ndims git utilities], + [0.0.0], + [hun@n-dimensional.de], + [ndim-git-utils]) +AC_CONFIG_SRCDIR([src/git-amb.1]) +AC_CONFIG_AUX_DIR([auto-aux]) +AM_INIT_AUTOMAKE([-Wall foreign 1.10 dist-bzip2]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT diff --git a/src/Makefile-files b/src/Makefile-files new file mode 100644 index 0000000..b5dfd96 --- /dev/null +++ b/src/Makefile-files @@ -0,0 +1,6 @@ +# -*- makefile -*- +bin_SCRIPTS += src/git-amb +EXTRA_DIST += src/git-amb + +man_MANS += src/git-amb.1 +EXTRA_DIST += src/git-amb.1 |