Currently Guix has quite a lot of files in its top level directory. IMO it makes it hard to have a global view on the project and doesn't help understanding how those files relates to each other. These two patches tries to improve that, but of course this is pure bikeshedding. :) Mathieu Lirzin (2): build: Move included files to subdirectories. build: Move environment scripts to 'build-aux' directory. Makefile.am | 8 +- build-aux/pre-inst-env.in | 71 ++++ build-aux/test-env.in | 131 +++++++ configure.ac | 5 +- daemon.am | 226 ------------ doc.am | 157 --------- doc/guix.texi | 2 +- doc/local.mk | 157 +++++++++ emacs.am | 73 ---- emacs/guix-config.el.in | 2 +- emacs/local.mk | 73 ++++ gnu-system.am | 883 ---------------------------------------------- gnu/local.mk | 883 ++++++++++++++++++++++++++++++++++++++++++++++ guix/config.scm.in | 4 +- nix/local.mk | 226 ++++++++++++ pre-inst-env.in | 71 ---- test-env.in | 131 ------- 17 files changed, 1552 insertions(+), 1551 deletions(-) create mode 100644 build-aux/pre-inst-env.in create mode 100644 build-aux/test-env.in delete mode 100644 daemon.am delete mode 100644 doc.am create mode 100644 doc/local.mk delete mode 100644 emacs.am create mode 100644 emacs/local.mk delete mode 100644 gnu-system.am create mode 100644 gnu/local.mk create mode 100644 nix/local.mk delete mode 100644 pre-inst-env.in delete mode 100644 test-env.in -- 2.8.0.rc3