guix system: Fix 'init'.
[guix.git] / Makefile.am
blobc63b65ba569fc8c097d3790bfaf9c3cbb0e7cb31
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
3 # Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 # Copyright © 2015, 2017 Alex Kost <alezost@gmail.com>
5 # Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
6 # Copyright © 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
7 # Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
8 # Copyright © 2017 Leo Famulari <leo@famulari.name>
9 # Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
10 # Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
11 # Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
12 # Copyright © 2018 Nils Gillmann <ng0@n0.is>
13 # Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
14 # Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
16 # This file is part of GNU Guix.
18 # GNU Guix is free software; you can redistribute it and/or modify it
19 # under the terms of the GNU General Public License as published by
20 # the Free Software Foundation; either version 3 of the License, or (at
21 # your option) any later version.
23 # GNU Guix is distributed in the hope that it will be useful, but
24 # WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
31 MSGMERGE_UPDATE = @MSGMERGE@ --update
33 bin_SCRIPTS = scripts/guix
35 # Handle substitution of fully-expanded Autoconf variables.
36 do_subst = $(SED)                                       \
37   -e 's,[@]GUILE[@],$(GUILE),g'                         \
38   -e 's,[@]guilemoduledir[@],$(guilemoduledir),g'       \
39   -e 's,[@]guileobjectdir[@],$(guileobjectdir),g'       \
40   -e 's,[@]localedir[@],$(localedir),g'
42 scripts/guix: scripts/guix.in Makefile
43         $(AM_V_at)rm -f $@ $@-t
44         $(AM_V_at)$(MKDIR_P) "$(@D)"
45         $(AM_V_GEN)$(do_subst) < "$(srcdir)/$@.in" > "$@-t"
46         $(AM_V_at)chmod a+x,a-w "$@-t" && mv -f "$@-t" "$@"
48 nodist_noinst_SCRIPTS =                         \
49   pre-inst-env                                  \
50   test-env
52 # Modules that are not compiled but are installed nonetheless, such as
53 # build-side modules with unusual dependencies.
54 MODULES_NOT_COMPILED =                          \
55   guix/man-db.scm
57 include gnu/local.mk
58 include po/doc/local.mk
60 MODULES =                                       \
61   guix/base16.scm                               \
62   guix/base32.scm                               \
63   guix/base64.scm                               \
64   guix/cpio.scm                                 \
65   guix/records.scm                              \
66   guix/pki.scm                                  \
67   guix/progress.scm                             \
68   guix/combinators.scm                          \
69   guix/memoization.scm                          \
70   guix/utils.scm                                \
71   guix/sets.scm                                 \
72   guix/modules.scm                              \
73   guix/download.scm                             \
74   guix/discovery.scm                            \
75   guix/git-download.scm                         \
76   guix/hg-download.scm                          \
77   guix/monads.scm                               \
78   guix/monad-repl.scm                           \
79   guix/gexp.scm                                 \
80   guix/profiles.scm                             \
81   guix/serialization.scm                        \
82   guix/nar.scm                                  \
83   guix/derivations.scm                          \
84   guix/grafts.scm                               \
85   guix/inferior.scm                             \
86   guix/describe.scm                             \
87   guix/channels.scm                             \
88   guix/gnu-maintenance.scm                      \
89   guix/self.scm                                 \
90   guix/upstream.scm                             \
91   guix/licenses.scm                             \
92   guix/glob.scm                                 \
93   guix/git.scm                                  \
94   guix/graph.scm                                \
95   guix/cache.scm                                \
96   guix/cve.scm                                  \
97   guix/workers.scm                              \
98   guix/zlib.scm                                 \
99   guix/build-system.scm                         \
100   guix/build-system/android-ndk.scm             \
101   guix/build-system/ant.scm                     \
102   guix/build-system/cargo.scm                   \
103   guix/build-system/cmake.scm                   \
104   guix/build-system/dub.scm                     \
105   guix/build-system/emacs.scm                   \
106   guix/build-system/font.scm                    \
107   guix/build-system/go.scm                      \
108   guix/build-system/meson.scm                   \
109   guix/build-system/minify.scm                  \
110   guix/build-system/asdf.scm                    \
111   guix/build-system/glib-or-gtk.scm             \
112   guix/build-system/gnu.scm                     \
113   guix/build-system/guile.scm                   \
114   guix/build-system/haskell.scm                 \
115   guix/build-system/perl.scm                    \
116   guix/build-system/python.scm                  \
117   guix/build-system/ocaml.scm                   \
118   guix/build-system/waf.scm                     \
119   guix/build-system/r.scm                       \
120   guix/build-system/ruby.scm                    \
121   guix/build-system/scons.scm                   \
122   guix/build-system/texlive.scm                 \
123   guix/build-system/trivial.scm                 \
124   guix/ftp-client.scm                           \
125   guix/http-client.scm                          \
126   guix/gnupg.scm                                \
127   guix/elf.scm                                  \
128   guix/profiling.scm                            \
129   guix/store.scm                                \
130   guix/cvs-download.scm                         \
131   guix/svn-download.scm                         \
132   guix/i18n.scm                                 \
133   guix/ui.scm                                   \
134   guix/status.scm                               \
135   guix/build/android-ndk-build-system.scm       \
136   guix/build/ant-build-system.scm               \
137   guix/build/download.scm                       \
138   guix/build/download-nar.scm                   \
139   guix/build/cargo-build-system.scm             \
140   guix/build/cmake-build-system.scm             \
141   guix/build/dub-build-system.scm               \
142   guix/build/emacs-build-system.scm             \
143   guix/build/meson-build-system.scm             \
144   guix/build/minify-build-system.scm            \
145   guix/build/font-build-system.scm              \
146   guix/build/go-build-system.scm                \
147   guix/build/asdf-build-system.scm              \
148   guix/build/git.scm                            \
149   guix/build/hg.scm                             \
150   guix/build/glib-or-gtk-build-system.scm       \
151   guix/build/gnu-build-system.scm               \
152   guix/build/gnu-dist.scm                       \
153   guix/build/guile-build-system.scm             \
154   guix/build/perl-build-system.scm              \
155   guix/build/python-build-system.scm            \
156   guix/build/ocaml-build-system.scm             \
157   guix/build/r-build-system.scm                 \
158   guix/build/ruby-build-system.scm              \
159   guix/build/scons-build-system.scm             \
160   guix/build/texlive-build-system.scm           \
161   guix/build/waf-build-system.scm               \
162   guix/build/haskell-build-system.scm           \
163   guix/build/store-copy.scm                     \
164   guix/build/utils.scm                          \
165   guix/build/union.scm                          \
166   guix/build/profiles.scm                       \
167   guix/build/compile.scm                        \
168   guix/build/pull.scm                           \
169   guix/build/rpath.scm                          \
170   guix/build/cvs.scm                            \
171   guix/build/svn.scm                            \
172   guix/build/syscalls.scm                       \
173   guix/build/gremlin.scm                        \
174   guix/build/debug-link.scm                     \
175   guix/build/emacs-utils.scm                    \
176   guix/build/java-utils.scm                     \
177   guix/build/lisp-utils.scm                     \
178   guix/build/graft.scm                          \
179   guix/build/bournish.scm                       \
180   guix/build/qt-utils.scm                       \
181   guix/build/make-bootstrap.scm                 \
182   guix/search-paths.scm                         \
183   guix/packages.scm                             \
184   guix/import/print.scm                         \
185   guix/import/utils.scm                         \
186   guix/import/gnu.scm                           \
187   guix/import/snix.scm                          \
188   guix/import/cabal.scm                         \
189   guix/import/cran.scm                          \
190   guix/import/hackage.scm                       \
191   guix/import/elpa.scm                          \
192   guix/import/texlive.scm                       \
193   guix/scripts.scm                              \
194   guix/scripts/download.scm                     \
195   guix/scripts/perform-download.scm             \
196   guix/scripts/build.scm                        \
197   guix/scripts/archive.scm                      \
198   guix/scripts/import.scm                       \
199   guix/scripts/package.scm                      \
200   guix/scripts/gc.scm                           \
201   guix/scripts/hash.scm                         \
202   guix/scripts/pack.scm                         \
203   guix/scripts/pull.scm                         \
204   guix/scripts/processes.scm                    \
205   guix/scripts/substitute.scm                   \
206   guix/scripts/authenticate.scm                 \
207   guix/scripts/refresh.scm                      \
208   guix/scripts/repl.scm                         \
209   guix/scripts/describe.scm                     \
210   guix/scripts/system.scm                       \
211   guix/scripts/system/search.scm                \
212   guix/scripts/lint.scm                         \
213   guix/scripts/challenge.scm                    \
214   guix/scripts/import/cran.scm                  \
215   guix/scripts/import/gnu.scm                   \
216   guix/scripts/import/nix.scm                   \
217   guix/scripts/import/hackage.scm               \
218   guix/scripts/import/elpa.scm                  \
219   guix/scripts/import/texlive.scm               \
220   guix/scripts/environment.scm                  \
221   guix/scripts/publish.scm                      \
222   guix/scripts/edit.scm                         \
223   guix/scripts/size.scm                         \
224   guix/scripts/graph.scm                        \
225   guix/scripts/container.scm                    \
226   guix/scripts/container/exec.scm               \
227   guix.scm                                      \
228   $(GNU_SYSTEM_MODULES)
230 if HAVE_GUILE_JSON
232 MODULES +=                                      \
233   guix/ci.scm                                   \
234   guix/docker.scm                               \
235   guix/import/cpan.scm                          \
236   guix/import/crate.scm                         \
237   guix/import/gem.scm                           \
238   guix/import/github.scm                        \
239   guix/import/gnome.scm                         \
240   guix/import/json.scm                          \
241   guix/import/opam.scm                          \
242   guix/import/pypi.scm                          \
243   guix/import/stackage.scm                      \
244   guix/scripts/import/crate.scm                 \
245   guix/scripts/import/gem.scm                   \
246   guix/scripts/import/json.scm                  \
247   guix/scripts/import/opam.scm                  \
248   guix/scripts/import/pypi.scm                  \
249   guix/scripts/import/stackage.scm              \
250   guix/scripts/weather.scm
252 endif
254 if HAVE_GUILE_SSH
256 MODULES +=                                      \
257   guix/ssh.scm                                  \
258   guix/scripts/copy.scm                         \
259   guix/store/ssh.scm
261 endif HAVE_GUILE_SSH
263 if BUILD_DAEMON_OFFLOAD
265 MODULES +=                                      \
266   guix/scripts/offload.scm
268 endif BUILD_DAEMON_OFFLOAD
270 # Scheme implementation of the build daemon and related functionality.
271 STORE_MODULES =                                 \
272   guix/store/database.scm                       \
273   guix/store/deduplication.scm
275 MODULES += $(STORE_MODULES)
277 # Internal modules with test suite support.
278 dist_noinst_DATA = guix/tests.scm guix/tests/http.scm
280 # Auxiliary files for packages.
281 AUX_FILES =                                             \
282   gnu/packages/aux-files/emacs/guix-emacs.el            \
283   gnu/packages/aux-files/linux-libre/4.19-arm.conf      \
284   gnu/packages/aux-files/linux-libre/4.19-arm64.conf    \
285   gnu/packages/aux-files/linux-libre/4.19-i686.conf     \
286   gnu/packages/aux-files/linux-libre/4.19-x86_64.conf   \
287   gnu/packages/aux-files/linux-libre/4.14-arm.conf      \
288   gnu/packages/aux-files/linux-libre/4.14-i686.conf     \
289   gnu/packages/aux-files/linux-libre/4.14-x86_64.conf   \
290   gnu/packages/aux-files/linux-libre/4.9-i686.conf      \
291   gnu/packages/aux-files/linux-libre/4.9-x86_64.conf    \
292   gnu/packages/aux-files/linux-libre/4.4-i686.conf      \
293   gnu/packages/aux-files/linux-libre/4.4-x86_64.conf    \
294   gnu/packages/aux-files/run-in-namespace.c
296 # Templates, examples.
297 EXAMPLES =                                      \
298   gnu/system/examples/bare-bones.tmpl           \
299   gnu/system/examples/beaglebone-black.tmpl     \
300   gnu/system/examples/desktop.tmpl              \
301   gnu/system/examples/lightweight-desktop.tmpl  \
302   gnu/system/examples/vm-image.tmpl
304 GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
306 nobase_dist_guilemodule_DATA =                                  \
307   guix/store/schema.sql                                         \
308   $(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES)   \
309   $(MISC_DISTRO_FILES)
310 nobase_nodist_guilemodule_DATA = guix/config.scm
311 nobase_nodist_guileobject_DATA = $(GOBJECTS)
313 # Handy way to remove the .go files without removing all the rest.
314 clean-go:
315         -$(RM) -f $(GOBJECTS)
316         @find . -name '*.go' -print | \
317           if test -t 1; then \
318             xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
319           else \
320             xargs -r echo "warning: stray .go files:"; \
321           fi
324 # Test extensions; has to be unconditional.
325 TEST_EXTENSIONS = .scm .sh
327 if CAN_RUN_TESTS
329 SCM_TESTS =                                     \
330   tests/base16.scm                              \
331   tests/base32.scm                              \
332   tests/base64.scm                              \
333   tests/cpio.scm                                \
334   tests/pki.scm                                 \
335   tests/print.scm                               \
336   tests/sets.scm                                \
337   tests/modules.scm                             \
338   tests/gnu-maintenance.scm                     \
339   tests/substitute.scm                          \
340   tests/builders.scm                            \
341   tests/derivations.scm                         \
342   tests/glob.scm                                \
343   tests/grafts.scm                              \
344   tests/ui.scm                                  \
345   tests/status.scm                              \
346   tests/records.scm                             \
347   tests/processes.scm                           \
348   tests/upstream.scm                            \
349   tests/combinators.scm                         \
350   tests/discovery.scm                           \
351   tests/utils.scm                               \
352   tests/build-utils.scm                         \
353   tests/packages.scm                            \
354   tests/snix.scm                                \
355   tests/hackage.scm                             \
356   tests/cran.scm                                \
357   tests/elpa.scm                                \
358   tests/texlive.scm                             \
359   tests/store.scm                               \
360   tests/monads.scm                              \
361   tests/gexp.scm                                \
362   tests/nar.scm                                 \
363   tests/union.scm                               \
364   tests/profiles.scm                            \
365   tests/search-paths.scm                        \
366   tests/syscalls.scm                            \
367   tests/inferior.scm                            \
368   tests/gremlin.scm                             \
369   tests/debug-link.scm                          \
370   tests/bournish.scm                            \
371   tests/lint.scm                                \
372   tests/publish.scm                             \
373   tests/scripts.scm                             \
374   tests/size.scm                                \
375   tests/graph.scm                               \
376   tests/challenge.scm                           \
377   tests/cache.scm                               \
378   tests/cve.scm                                 \
379   tests/workers.scm                             \
380   tests/zlib.scm                                \
381   tests/file-systems.scm                        \
382   tests/uuid.scm                                \
383   tests/system.scm                              \
384   tests/services.scm                            \
385   tests/scripts-build.scm                       \
386   tests/containers.scm                          \
387   tests/pack.scm                                \
388   tests/import-utils.scm                        \
389   tests/store-database.scm                      \
390   tests/store-deduplication.scm
392 if HAVE_GUILE_JSON
394 SCM_TESTS +=                                    \
395   tests/pypi.scm                                \
396   tests/opam.scm                                \
397   tests/cpan.scm                                \
398   tests/gem.scm                                 \
399   tests/crate.scm
401 endif
403 SH_TESTS =                                      \
404   tests/guix-build.sh                           \
405   tests/guix-download.sh                        \
406   tests/guix-gc.sh                              \
407   tests/guix-hash.sh                            \
408   tests/guix-pack.sh                            \
409   tests/guix-pack-relocatable.sh                \
410   tests/guix-package.sh                         \
411   tests/guix-package-net.sh                     \
412   tests/guix-system.sh                          \
413   tests/guix-archive.sh                         \
414   tests/guix-authenticate.sh                    \
415   tests/guix-environment.sh                     \
416   tests/guix-environment-container.sh           \
417   tests/guix-graph.sh                           \
418   tests/guix-describe.sh                        \
419   tests/guix-lint.sh
421 TESTS = $(SCM_TESTS) $(SH_TESTS)
423 AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
425 SCM_LOG_DRIVER =                                \
426   $(top_builddir)/test-env --quiet-stderr       \
427   $(GUILE) --no-auto-compile -e main            \
428       $(top_srcdir)/build-aux/test-driver.scm
430 AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
432 SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
433 AM_SH_LOG_FLAGS = -x -e
435 # Make sure `tests/guix-gc.sh' runs last, after all the others.  Otherwise it
436 # could end up removing files from the store while they are being used by
437 # other instances of the daemon.
438 tests/guix-gc.log:                                                      \
439   $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS)))     \
440   $(SCM_TESTS:%.scm=%.log)
442 else !CAN_RUN_TESTS
444 TESTS =
445 SH_TESTS =
446 SCM_TESTS =
448 # Automake always generates a 'check' target, so better not override it.
449 check-local:
450         @echo
451         @echo "Cannot run tests because file name limits would be exceeded." >&2
452         @echo "Look for 'length' in the 'config.log' file for details." >&2
453         @echo
454         @exit 1
456 endif !CAN_RUN_TESTS
458 check-system: $(GOBJECTS)
459         $(AM_V_at)$(top_builddir)/pre-inst-env                  \
460            $(GUILE) --no-auto-compile                           \
461            -e '(@@ (run-system-tests) run-system-tests)'        \
462            $(top_srcdir)/build-aux/run-system-tests.scm
464 # Public key used to sign substitutes from hydra.gnu.org & co.
465 dist_pkgdata_DATA =                             \
466   etc/substitutes/hydra.gnu.org.pub             \
467   etc/substitutes/berlin.guixsd.org.pub
469 # Bash completion file.
470 dist_bashcompletion_DATA = etc/completion/bash/guix     \
471   etc/completion/bash/guix-daemon
473 # Zsh completion file.
474 dist_zshcompletion_DATA = etc/completion/zsh/_guix
476 # Fish completion file.
477 dist_fishcompletion_DATA = etc/completion/fish/guix.fish
479 # SELinux policy
480 dist_selinux_policy_DATA = etc/guix-daemon.cil
482 EXTRA_DIST +=                                           \
483   HACKING                                               \
484   ROADMAP                                               \
485   TODO                                                  \
486   CODE-OF-CONDUCT                                       \
487   .dir-locals.el                                        \
488   scripts/guix.in                                       \
489   etc/guix-install.sh                                   \
490   build-aux/build-self.scm                              \
491   build-aux/compile-all.scm                             \
492   build-aux/hydra/evaluate.scm                          \
493   build-aux/hydra/gnu-system.scm                        \
494   build-aux/hydra/guix.scm                              \
495   build-aux/hydra/guix-modular.scm                      \
496   build-aux/cuirass/gnu-system.scm                      \
497   build-aux/cuirass/guix-modular.scm                    \
498   build-aux/cuirass/hydra-to-cuirass.scm                \
499   build-aux/check-available-binaries.scm                \
500   build-aux/check-final-inputs-self-contained.scm       \
501   build-aux/compile-as-derivation.scm                   \
502   build-aux/generate-authors.scm                        \
503   build-aux/test-driver.scm                             \
504   build-aux/update-guix-package.scm                     \
505   build-aux/update-NEWS.scm                             \
506   build-aux/run-system-tests.scm                        \
507   d3.v3.js                                              \
508   graph.js                                              \
509   tests/test.drv                                        \
510   tests/signing-key.pub                                 \
511   tests/signing-key.sec                                 \
512   tests/cve-sample.xml                                  \
513   build-aux/config.rpath                                \
514   bootstrap                                             \
515   release.nix                                           \
516   $(TESTS)
518 if !BUILD_DAEMON_OFFLOAD
520 EXTRA_DIST +=                                   \
521   guix/scripts/offload.scm
523 endif !BUILD_DAEMON_OFFLOAD
526 CLEANFILES =                                    \
527   $(bin_SCRIPTS)                                \
528   $(GOBJECTS)                                   \
529   $(SCM_TESTS:tests/%.scm=%.log)
531 # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling.  Otherwise, if
532 # $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
533 # there that are newer than the local .scm files (for instance because the
534 # user ran 'make install' recently).  When that happens, we end up loading
535 # those previously-installed .go files, which may be stale, thereby breaking
536 # the whole thing.  Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
537 # stale files from ~/.cache/guile/ccache.
538 %.go: make-go ; @:
539 make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
540         $(AM_V_at)echo "Compiling Scheme modules..." ;                  \
541         unset GUILE_LOAD_COMPILED_PATH ;                                \
542         XDG_CACHE_HOME=/nowhere                                         \
543         host=$(host) srcdir="$(top_srcdir)"                             \
544         $(top_builddir)/pre-inst-env                                    \
545         $(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)"                \
546           --no-auto-compile                                             \
547           -s "$(top_srcdir)"/build-aux/compile-all.scm $^
549 SUFFIXES = .go
551 # Make sure source files are installed first, so that the mtime of
552 # installed compiled files is greater than that of installed source
553 # files.  See
554 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
555 # for details.
556 guix_install_go_files = install-nobase_nodist_guileobjectDATA
557 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
559 # The above trick doesn't work for 'config.go' because both 'config.scm' and
560 # 'config.go' are listed in $(nobase_nodist_guileobject_DATA).  Thus, give it
561 # special treatment.
562 install-data-hook: set-bootstrap-executable-permissions
563         touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
565 # Assuming Guix is already installed and the daemon is up and running, this
566 # rule builds from $(srcdir), creating and building derivations.
567 as-derivation:
568         $(AM_V_at)echo "Building Guix in Guix..." ;             \
569         $(GUILE) --no-auto-compile                              \
570           "$(top_srcdir)/build-aux/compile-as-derivation.scm"   \
571           "$(abs_top_srcdir)"
573 SUBDIRS = po/guix po/packages
574 BUILT_SOURCES =
576 include doc/local.mk
578 if BUILD_DAEMON
580 include nix/local.mk
582 endif BUILD_DAEMON
584 ACLOCAL_AMFLAGS = -I m4
586 # Pass an explicit '--localstatedir' so that configure does not error out if
587 # it finds an existing installation with a different localstatedir.  Inherit
588 # 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
589 # repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
590 # enough for shebangs.
591 AM_DISTCHECK_CONFIGURE_FLAGS =                  \
592   --localstatedir="$$dc_install_base/var"       \
593   --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
594   --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
595   --with-nix-prefix="$(NIX_PREFIX)"             \
596   --enable-daemon                               \
597   ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
599 # The self-contained tarball.  Add 'glibc-utf8-locales' along with glibc just
600 # so 'etc/profile' defines 'GUIX_LOCPATH' pointing to a valid set of locales.
601 guix-binary.%.tar.xz:
602         $(AM_V_GEN)GUIX_PACKAGE_PATH=                                   \
603         tarball=`$(top_builddir)/pre-inst-env guix pack -K -C xz        \
604           -s "$*" --localstatedir guix glibc-utf8-locales               \
605           -e  '(@@ (gnu packages commencement) glibc-final)'` ;         \
606         cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
609 dist-hook: $(distdir)/ChangeLog gen-AUTHORS gen-tarball-version
610 dist-hook: assert-no-store-file-names
612 distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
614 EXTRA_DIST += $(top_srcdir)/.version
615 BUILT_SOURCES += $(top_srcdir)/.version
616 $(top_srcdir)/.version:
617         echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
619 gen-tarball-version:
620         echo $(VERSION) > "$(distdir)/.tarball-version"
622 gen-ChangeLog $(distdir)/ChangeLog:
623         $(AM_V_GEN)if test -d .git; then                \
624           $(top_srcdir)/build-aux/gitlog-to-changelog   \
625             > $(distdir)/cl-t;                          \
626           rm -f $(distdir)/ChangeLog;                   \
627           mv $(distdir)/cl-t $(distdir)/ChangeLog;      \
628         fi
630 gen-AUTHORS:
631         $(AM_V_GEN)if test -d .git; then                        \
632           rm -f "$(distdir)/AUTHORS";                           \
633           $(top_builddir)/pre-inst-env "$(GUILE)"               \
634             "$(top_srcdir)/build-aux/generate-authors.scm"      \
635             "$(top_srcdir)" "$(distdir)/AUTHORS";               \
636         fi
640 # Release management.
643 releasedir = release-$(PACKAGE_VERSION)
645 PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
647 # List of source tarballs produced.  This must be kept in sync with the
648 # 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
649 SOURCE_TARBALLS =                                       \
650   $(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
652 # Systems supported by Guix.
653 SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux aarch64-linux
655 # Guix binary tarballs.
656 BINARY_TARBALLS =                                                       \
657   $(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
659 # Systems supported by GuixSD.
660 GUIXSD_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
662 # Systems for which we build GuixSD VMs.
663 GUIXSD_VM_SYSTEMS ?= x86_64-linux
665 # Prefix of the GuixSD installation image file name.
666 GUIXSD_IMAGE_BASE = guixsd-install-$(PACKAGE_VERSION)
668 # Prefix of the GuixSD VM image file name.
669 GUIXSD_VM_IMAGE_BASE = guixsd-vm-image-$(PACKAGE_VERSION)
671 # The release process works in several phases:
673 #   0. We assume the developer created a 'vX.Y' tag.
674 #   1. Build the source tarball.
675 #   2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
676 #   3. Build the binary tarballs for that 'guix' package.
677 #   4. Update the 'guix' package again.
678 #   5. Build the GuixSD installation images.  The images will run 'guix'
679 #      corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
681 # This 'release' target takes care of everything and copies the resulting
682 # files to $(releasedir).
684 # XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
685 # issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
686 release: dist
687         cd po; git checkout .
688         @if ! git diff-index --quiet HEAD; then                 \
689           echo "There are uncommitted changes; stopping." >&2 ; \
690           exit 1 ;                                              \
691         fi
692         $(MKDIR_P) "$(releasedir)"
693         rm -f "$(releasedir)"/*
694         mv $(SOURCE_TARBALLS) "$(releasedir)"
695         $(top_builddir)/pre-inst-env "$(GUILE)"                 \
696            $(top_srcdir)/build-aux/update-guix-package.scm      \
697            "`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
698         git add $(top_srcdir)/gnu/packages/package-management.scm
699         git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
700         rm -f $(BINARY_TARBALLS)
701         $(MAKE) $(BINARY_TARBALLS)
702         for system in $(SUPPORTED_SYSTEMS) ; do                                 \
703           mv "guix-binary.$$system.tar.xz"                                      \
704               "$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ;  \
705         done
706         $(top_builddir)/pre-inst-env "$(GUILE)"                 \
707            $(top_srcdir)/build-aux/update-guix-package.scm      \
708            "`git rev-parse HEAD`"
709         git add $(top_srcdir)/gnu/packages/package-management.scm
710         git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
711         for system in $(GUIXSD_SUPPORTED_SYSTEMS) ; do                                  \
712           image=`$(top_builddir)/pre-inst-env                                           \
713             guix system disk-image                                                      \
714             --file-system-type=iso9660                                                  \
715             --system=$$system                                                           \
716             gnu/system/install.scm` ;                                                   \
717           if [ ! -f "$$image" ] ; then                                                  \
718             echo "failed to produced GuixSD installation image for $$system" >&2 ;      \
719             exit 1 ;                                                                    \
720           fi ;                                                                          \
721           xz < "$$image" > "$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.iso.xz.tmp" ;   \
722           mv "$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.iso.xz.tmp"                   \
723              "$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.iso.xz" ;                     \
724         done
725         for system in $(GUIXSD_VM_SYSTEMS) ; do                                         \
726           image=`$(top_builddir)/pre-inst-env                                           \
727             guix system vm-image                                                        \
728             --system=$$system                                                           \
729             gnu/system/examples/vm-image.tmpl` ;                                        \
730           if [ ! -f "$$image" ] ; then                                                  \
731             echo "failed to produced GuixSD VM image for $$system" >&2 ;                \
732             exit 1 ;                                                                    \
733           fi ;                                                                          \
734           xz < "$$image" > "$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz.tmp" ;    \
735           mv "$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz.tmp"                    \
736              "$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz" ;                      \
737         done
738         @echo
739         @echo "Congratulations!  All the release files are now in $(releasedir)."
740         @echo
742 update-guix-package:
743         git rev-parse HEAD
744         $(top_builddir)/pre-inst-env "$(GUILE)"                 \
745            $(top_srcdir)/build-aux/update-guix-package.scm      \
746            "`git rev-parse HEAD`"
748 # Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
749 # Package data from this checkout is used by 'update-NEWS.scm'.
750 GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
752 update-NEWS: $(GOBJECTS)
753         $(top_builddir)/pre-inst-env "$(GUILE)"                         \
754           $(top_srcdir)/build-aux/update-NEWS.scm                       \
755           $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
757 # Make sure we're not shipping a file that embeds a local /gnu/store file name.
758 assert-no-store-file-names: $(distdir)/ChangeLog
759         $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info                  \
760              --exclude=*.info-[0-9] --exclude=*.dot                             \
761              --exclude=*.eps --exclude-dir=bootstrap                            \
762                  --exclude=guix-manual.pot --exclude=guix-manual.*.po           \
763              --exclude=guix-prettify.el                                         \
764              --exclude=ChangeLog                                                \
765              -E "$(storedir)/[a-z0-9]{32}-" $(distdir) ;                        \
766         then                                                                    \
767           echo "error: store file names embedded in the distribution" >&2 ;     \
768           exit 1 ;                                                              \
769         fi
771 # Make sure hydra.gnu.org has the important binaries.
772 assert-binaries-available: $(GOBJECTS)
773         $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)"                       \
774           "$(top_srcdir)/build-aux/check-available-binaries.scm"
776 # Make sure the final inputs don't refer to bootstrap tools.
777 assert-final-inputs-self-contained: $(GOBJECTS)
778         $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)"                       \
779           "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
781 # Compute the Hydra jobs and write them in the target file.
782 hydra-jobs.scm: $(GOBJECTS)
783         $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
784         $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)"              \
785           "$(top_srcdir)/build-aux/hydra/evaluate.scm"                  \
786           "$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
787         $(AM_V_at)mv "$@.tmp" "$@"
789 # Compute the Cuirass jobs and write them in the target file.
790 cuirass-jobs.scm: $(GOBJECTS)
791         $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
792         $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)"              \
793           "$(top_srcdir)/build-aux/hydra/evaluate.scm"                  \
794           "$(top_srcdir)/build-aux/cuirass/gnu-system.scm"              \
795           cuirass > "$@.tmp"
796         $(AM_V_at)mv "$@.tmp" "$@"
798 .PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
799 .PHONY: assert-no-store-file-names assert-binaries-available
800 .PHONY: assert-final-inputs-self-contained
801 .PHONY: clean-go make-go as-derivation
802 .PHONY: update-guix-package update-NEWS release
804 ## -------------- ##
805 ## Silent rules.  ##
806 ## -------------- ##
808 AM_V_DL = $(AM_V_DL_$(V))
809 AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
810 AM_V_DL_0 = @echo "  DL      " $@;
812 AM_V_DOT = $(AM_V_DOT_$(V))
813 AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
814 AM_V_DOT_0 = @echo "  DOT     " $@;
816 AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
817 AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
818 AM_V_HELP2MAN_0 = @echo "  HELP2MAN" $@;
820 AM_V_PO4A = $(AM_V_PO4A_$(V))
821 AM_V_PO4A_ = $(AM_V_PO4A_$(AM_DEFAULT_VERBOSITY))
822 AM_V_PO4A_0 = @echo "  PO4A" $@;
824 AM_V_POXREF = $(AM_V_POXREF_$(V))
825 AM_V_POXREF_ = $(AM_V_POXREF_$(AM_DEFAULT_VERBOSITY))
826 AM_V_POXREF_0 = @echo "  POXREF" $@;