diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile.am (renamed from Makefile) | 0 | ||||
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | manifest.scm | 9 |
4 files changed, 15 insertions, 0 deletions
@@ -5,3 +5,6 @@ /config.status /configure /install +/build-aux/ +/Makefile.in +/Makefile diff --git a/configure.ac b/configure.ac index d755693..6ad8193 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,9 @@ dnl -*- Autoconf -*- AC_INIT(dotfiles, 0) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE([foreign]) +AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([install], [chmod +x install]) GUILE_PROGS diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000..2f78a8c --- /dev/null +++ b/manifest.scm @@ -0,0 +1,9 @@ +(use-modules (gnu packages autotools) + (gnu packages guile) + (guix packages)) + +(packages->manifest + (list autoconf + automake + gnu-make + guile-3.0)) |