diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-11-21 13:12:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-11-21 16:26:43 +0100 |
commit | 8fb583714f78d1b283523ef7edbb6e098946182f (patch) | |
tree | 13db949dd4869d2c8b41a3a1ce0a28f9bacbb860 /Makefile.am | |
parent | 1b933e62dcc8521e383a78e5d7952a194e47a4ec (diff) | |
download | patches-8fb583714f78d1b283523ef7edbb6e098946182f.tar patches-8fb583714f78d1b283523ef7edbb6e098946182f.tar.gz |
Add (guix graph).
* guix/scripts/graph.scm (<node-type>, <graph-backend>, emit-prologue)
(emit-epilogue, emit-node, emit-edge, %graphviz-backend, export-graph):
Move to...
* guix/graph.scm: ... here. New file.
* guix/scripts/system.scm, tests/graph.scm: Use it.
* Makefile.am (MODULES): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 67d483bfb0..43be2ec89e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -50,6 +50,7 @@ MODULES = \ guix/gnu-maintenance.scm \ guix/upstream.scm \ guix/licenses.scm \ + guix/graph.scm \ guix/build-system.scm \ guix/build-system/cmake.scm \ guix/build-system/emacs.scm \ |