maint: Use 'guix' instead of 'guile3.0-guix' for the binary tarball.
[jackhill/guix/guix.git] / Makefile.am
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 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, 2019 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, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
11 # Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
12 # Copyright © 2018 Nikita <nikita@n0.is>
13 # Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
14 # Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
15 # Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
16 # Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
17 #
18 # This file is part of GNU Guix.
19 #
20 # GNU Guix is free software; you can redistribute it and/or modify it
21 # under the terms of the GNU General Public License as published by
22 # the Free Software Foundation; either version 3 of the License, or (at
23 # your option) any later version.
24 #
25 # GNU Guix is distributed in the hope that it will be useful, but
26 # WITHOUT ANY WARRANTY; without even the implied warranty of
27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 # GNU General Public License for more details.
29 #
30 # You should have received a copy of the GNU General Public License
31 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
32
33 MSGMERGE_UPDATE = @MSGMERGE@ --update
34
35 bin_SCRIPTS = scripts/guix
36
37 # Handle substitution of fully-expanded Autoconf variables.
38 do_subst = $(SED) \
39 -e 's,[@]GUILE[@],$(GUILE),g' \
40 -e 's,[@]guilemoduledir[@],$(guilemoduledir),g' \
41 -e 's,[@]guileobjectdir[@],$(guileobjectdir),g' \
42 -e 's,[@]localedir[@],$(localedir),g'
43
44 scripts/guix: scripts/guix.in Makefile
45 $(AM_V_at)rm -f $@ $@-t
46 $(AM_V_at)$(MKDIR_P) "$(@D)"
47 $(AM_V_GEN)$(do_subst) < "$(srcdir)/$@.in" > "$@-t"
48 $(AM_V_at)chmod a+x,a-w "$@-t" && mv -f "$@-t" "$@"
49
50 # This is our variant of the 'guile' executable, one that doesn't complain
51 # about locales.
52 pkglibexec_PROGRAMS = guile
53 guile_SOURCES = gnu/packages/aux-files/guile-launcher.c
54 guile_LDADD = $(GUILE_LIBS)
55 guile_CFLAGS = $(GUILE_CFLAGS)
56
57 # Have the 'guix' command refer to our 'guile'.
58 install-exec-hook:
59 $(SED) -i "$(DESTDIR)$(bindir)/guix" \
60 -e 's,^#![[:graph:]]\+,#!$(pkglibexecdir)/guile,g'
61
62 nodist_noinst_SCRIPTS = \
63 pre-inst-env \
64 test-env
65
66 # Modules that are not compiled but are installed nonetheless, such as
67 # build-side modules with unusual dependencies.
68 MODULES_NOT_COMPILED = \
69 guix/build/po.scm \
70 guix/man-db.scm
71
72 include gnu/local.mk
73 include po/doc/local.mk
74
75 MODULES = \
76 guix/base16.scm \
77 guix/base32.scm \
78 guix/base64.scm \
79 guix/ci.scm \
80 guix/cpio.scm \
81 guix/deprecation.scm \
82 guix/docker.scm \
83 guix/records.scm \
84 guix/openpgp.scm \
85 guix/pki.scm \
86 guix/progress.scm \
87 guix/combinators.scm \
88 guix/memoization.scm \
89 guix/utils.scm \
90 guix/sets.scm \
91 guix/modules.scm \
92 guix/download.scm \
93 guix/discovery.scm \
94 guix/android-repo-download.scm \
95 guix/bzr-download.scm \
96 guix/git-download.scm \
97 guix/hg-download.scm \
98 guix/swh.scm \
99 guix/monads.scm \
100 guix/monad-repl.scm \
101 guix/gexp.scm \
102 guix/profiles.scm \
103 guix/serialization.scm \
104 guix/nar.scm \
105 guix/derivations.scm \
106 guix/grafts.scm \
107 guix/repl.scm \
108 guix/transformations.scm \
109 guix/inferior.scm \
110 guix/describe.scm \
111 guix/quirks.scm \
112 guix/channels.scm \
113 guix/gnu-maintenance.scm \
114 guix/self.scm \
115 guix/upstream.scm \
116 guix/licenses.scm \
117 guix/lint.scm \
118 guix/glob.scm \
119 guix/git.scm \
120 guix/git-authenticate.scm \
121 guix/graph.scm \
122 guix/cache.scm \
123 guix/cve.scm \
124 guix/workers.scm \
125 guix/build-system.scm \
126 guix/build-system/android-ndk.scm \
127 guix/build-system/ant.scm \
128 guix/build-system/cargo.scm \
129 guix/build-system/clojure.scm \
130 guix/build-system/cmake.scm \
131 guix/build-system/dub.scm \
132 guix/build-system/dune.scm \
133 guix/build-system/emacs.scm \
134 guix/build-system/font.scm \
135 guix/build-system/go.scm \
136 guix/build-system/meson.scm \
137 guix/build-system/minify.scm \
138 guix/build-system/asdf.scm \
139 guix/build-system/copy.scm \
140 guix/build-system/glib-or-gtk.scm \
141 guix/build-system/gnu.scm \
142 guix/build-system/guile.scm \
143 guix/build-system/haskell.scm \
144 guix/build-system/julia.scm \
145 guix/build-system/linux-module.scm \
146 guix/build-system/maven.scm \
147 guix/build-system/node.scm \
148 guix/build-system/perl.scm \
149 guix/build-system/python.scm \
150 guix/build-system/ocaml.scm \
151 guix/build-system/qt.scm \
152 guix/build-system/waf.scm \
153 guix/build-system/r.scm \
154 guix/build-system/rakudo.scm \
155 guix/build-system/ruby.scm \
156 guix/build-system/scons.scm \
157 guix/build-system/texlive.scm \
158 guix/build-system/trivial.scm \
159 guix/ftp-client.scm \
160 guix/http-client.scm \
161 guix/gnupg.scm \
162 guix/elf.scm \
163 guix/profiling.scm \
164 guix/store.scm \
165 guix/cvs-download.scm \
166 guix/svn-download.scm \
167 guix/colors.scm \
168 guix/i18n.scm \
169 guix/diagnostics.scm \
170 guix/ui.scm \
171 guix/status.scm \
172 guix/build/android-ndk-build-system.scm \
173 guix/build/ant-build-system.scm \
174 guix/build/download.scm \
175 guix/build/download-nar.scm \
176 guix/build/cargo-build-system.scm \
177 guix/build/cargo-utils.scm \
178 guix/build/cmake-build-system.scm \
179 guix/build/dub-build-system.scm \
180 guix/build/dune-build-system.scm \
181 guix/build/emacs-build-system.scm \
182 guix/build/meson-build-system.scm \
183 guix/build/minify-build-system.scm \
184 guix/build/font-build-system.scm \
185 guix/build/go-build-system.scm \
186 guix/build/android-repo.scm \
187 guix/build/asdf-build-system.scm \
188 guix/build/bzr.scm \
189 guix/build/copy-build-system.scm \
190 guix/build/git.scm \
191 guix/build/hg.scm \
192 guix/build/glib-or-gtk-build-system.scm \
193 guix/build/gnu-bootstrap.scm \
194 guix/build/gnu-build-system.scm \
195 guix/build/gnu-dist.scm \
196 guix/build/guile-build-system.scm \
197 guix/build/maven-build-system.scm \
198 guix/build/node-build-system.scm \
199 guix/build/perl-build-system.scm \
200 guix/build/python-build-system.scm \
201 guix/build/ocaml-build-system.scm \
202 guix/build/qt-build-system.scm \
203 guix/build/r-build-system.scm \
204 guix/build/rakudo-build-system.scm \
205 guix/build/ruby-build-system.scm \
206 guix/build/scons-build-system.scm \
207 guix/build/texlive-build-system.scm \
208 guix/build/waf-build-system.scm \
209 guix/build/haskell-build-system.scm \
210 guix/build/julia-build-system.scm \
211 guix/build/linux-module-build-system.scm \
212 guix/build/store-copy.scm \
213 guix/build/json.scm \
214 guix/build/utils.scm \
215 guix/build/union.scm \
216 guix/build/profiles.scm \
217 guix/build/compile.scm \
218 guix/build/rpath.scm \
219 guix/build/cvs.scm \
220 guix/build/svn.scm \
221 guix/build/syscalls.scm \
222 guix/build/gremlin.scm \
223 guix/build/debug-link.scm \
224 guix/build/clojure-build-system.scm \
225 guix/build/clojure-utils.scm \
226 guix/build/emacs-utils.scm \
227 guix/build/java-utils.scm \
228 guix/build/lisp-utils.scm \
229 guix/build/maven/java.scm \
230 guix/build/maven/plugin.scm \
231 guix/build/maven/pom.scm \
232 guix/build/graft.scm \
233 guix/build/bournish.scm \
234 guix/build/qt-utils.scm \
235 guix/build/make-bootstrap.scm \
236 guix/search-paths.scm \
237 guix/packages.scm \
238 guix/import/cabal.scm \
239 guix/import/cpan.scm \
240 guix/import/cran.scm \
241 guix/import/crate.scm \
242 guix/import/elpa.scm \
243 guix/import/gem.scm \
244 guix/import/github.scm \
245 guix/import/gnome.scm \
246 guix/import/gnu.scm \
247 guix/import/hackage.scm \
248 guix/import/json.scm \
249 guix/import/kde.scm \
250 guix/import/launchpad.scm \
251 guix/import/opam.scm \
252 guix/import/print.scm \
253 guix/import/pypi.scm \
254 guix/import/snix.scm \
255 guix/import/stackage.scm \
256 guix/import/texlive.scm \
257 guix/import/utils.scm \
258 guix/scripts.scm \
259 guix/scripts/download.scm \
260 guix/scripts/perform-download.scm \
261 guix/scripts/build.scm \
262 guix/scripts/archive.scm \
263 guix/scripts/import.scm \
264 guix/scripts/package.scm \
265 guix/scripts/install.scm \
266 guix/scripts/remove.scm \
267 guix/scripts/upgrade.scm \
268 guix/scripts/search.scm \
269 guix/scripts/show.scm \
270 guix/scripts/gc.scm \
271 guix/scripts/hash.scm \
272 guix/scripts/pack.scm \
273 guix/scripts/pull.scm \
274 guix/scripts/processes.scm \
275 guix/scripts/substitute.scm \
276 guix/scripts/authenticate.scm \
277 guix/scripts/refresh.scm \
278 guix/scripts/repl.scm \
279 guix/scripts/describe.scm \
280 guix/scripts/system.scm \
281 guix/scripts/system/search.scm \
282 guix/scripts/system/reconfigure.scm \
283 guix/scripts/lint.scm \
284 guix/scripts/challenge.scm \
285 guix/scripts/import/crate.scm \
286 guix/scripts/import/cran.scm \
287 guix/scripts/import/elpa.scm \
288 guix/scripts/import/gem.scm \
289 guix/scripts/import/gnu.scm \
290 guix/scripts/import/hackage.scm \
291 guix/scripts/import/json.scm \
292 guix/scripts/import/nix.scm \
293 guix/scripts/import/opam.scm \
294 guix/scripts/import/pypi.scm \
295 guix/scripts/import/stackage.scm \
296 guix/scripts/import/texlive.scm \
297 guix/scripts/environment.scm \
298 guix/scripts/publish.scm \
299 guix/scripts/edit.scm \
300 guix/scripts/size.scm \
301 guix/scripts/git.scm \
302 guix/scripts/git/authenticate.scm \
303 guix/scripts/graph.scm \
304 guix/scripts/weather.scm \
305 guix/scripts/container.scm \
306 guix/scripts/container/exec.scm \
307 guix/scripts/deploy.scm \
308 guix/scripts/time-machine.scm \
309 guix.scm \
310 $(GNU_SYSTEM_MODULES)
311
312 if HAVE_GUILE_SSH
313
314 MODULES += \
315 guix/ssh.scm \
316 guix/remote.scm \
317 guix/scripts/copy.scm \
318 guix/store/ssh.scm
319
320 endif HAVE_GUILE_SSH
321
322 if BUILD_DAEMON_OFFLOAD
323
324 MODULES += \
325 guix/scripts/offload.scm
326
327 endif BUILD_DAEMON_OFFLOAD
328
329 # Scheme implementation of the build daemon and related functionality.
330 STORE_MODULES = \
331 guix/store/database.scm \
332 guix/store/deduplication.scm \
333 guix/store/roots.scm
334
335 MODULES += $(STORE_MODULES)
336
337 # Internal modules with test suite support.
338 dist_noinst_DATA = \
339 guix/tests.scm \
340 guix/tests/http.scm \
341 guix/tests/git.scm \
342 guix/tests/gnupg.scm
343
344 # Auxiliary files for packages.
345 AUX_FILES = \
346 gnu/packages/aux-files/chromium/master-preferences.json \
347 gnu/packages/aux-files/emacs/guix-emacs.el \
348 gnu/packages/aux-files/linux-libre/5.9-arm.conf \
349 gnu/packages/aux-files/linux-libre/5.9-arm64.conf \
350 gnu/packages/aux-files/linux-libre/5.9-i686.conf \
351 gnu/packages/aux-files/linux-libre/5.9-x86_64.conf \
352 gnu/packages/aux-files/linux-libre/5.4-arm.conf \
353 gnu/packages/aux-files/linux-libre/5.4-arm64.conf \
354 gnu/packages/aux-files/linux-libre/5.4-i686.conf \
355 gnu/packages/aux-files/linux-libre/5.4-x86_64.conf \
356 gnu/packages/aux-files/linux-libre/4.19-arm.conf \
357 gnu/packages/aux-files/linux-libre/4.19-arm64.conf \
358 gnu/packages/aux-files/linux-libre/4.19-i686.conf \
359 gnu/packages/aux-files/linux-libre/4.19-x86_64.conf \
360 gnu/packages/aux-files/linux-libre/4.14-arm.conf \
361 gnu/packages/aux-files/linux-libre/4.14-i686.conf \
362 gnu/packages/aux-files/linux-libre/4.14-x86_64.conf \
363 gnu/packages/aux-files/linux-libre/4.9-i686.conf \
364 gnu/packages/aux-files/linux-libre/4.9-x86_64.conf \
365 gnu/packages/aux-files/linux-libre/4.4-i686.conf \
366 gnu/packages/aux-files/linux-libre/4.4-x86_64.conf \
367 gnu/packages/aux-files/pack-audit.c \
368 gnu/packages/aux-files/run-in-namespace.c
369
370 # Templates, examples.
371 EXAMPLES = \
372 gnu/system/examples/asus-c201.tmpl \
373 gnu/system/examples/bare-bones.tmpl \
374 gnu/system/examples/bare-hurd.tmpl \
375 gnu/system/examples/beaglebone-black.tmpl \
376 gnu/system/examples/desktop.tmpl \
377 gnu/system/examples/lightweight-desktop.tmpl \
378 gnu/system/examples/docker-image.tmpl \
379 gnu/system/examples/vm-image.tmpl
380
381 GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
382
383 nobase_dist_guilemodule_DATA = \
384 guix/store/schema.sql \
385 $(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES) \
386 $(MISC_DISTRO_FILES)
387 nobase_nodist_guilemodule_DATA = guix/config.scm
388 nobase_nodist_guileobject_DATA = $(GOBJECTS)
389
390 # Handy way to remove the .go files without removing all the rest.
391 clean-go:
392 -$(RM) -f $(GOBJECTS)
393 @find . -path ./test-tmp -prune -o -name '*.go' -print | \
394 if test -t 1; then \
395 xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
396 else \
397 xargs -r echo "warning: stray .go files:"; \
398 fi
399
400
401 # Test extensions; has to be unconditional.
402 TEST_EXTENSIONS = .scm .sh
403
404 if CAN_RUN_TESTS
405
406 SCM_TESTS = \
407 tests/accounts.scm \
408 tests/base16.scm \
409 tests/base32.scm \
410 tests/base64.scm \
411 tests/boot-parameters.scm \
412 tests/bournish.scm \
413 tests/builders.scm \
414 tests/build-utils.scm \
415 tests/cache.scm \
416 tests/challenge.scm \
417 tests/channels.scm \
418 tests/combinators.scm \
419 tests/containers.scm \
420 tests/cpan.scm \
421 tests/cpio.scm \
422 tests/cran.scm \
423 tests/crate.scm \
424 tests/cve.scm \
425 tests/debug-link.scm \
426 tests/derivations.scm \
427 tests/discovery.scm \
428 tests/elpa.scm \
429 tests/file-systems.scm \
430 tests/gem.scm \
431 tests/gexp.scm \
432 tests/git.scm \
433 tests/git-authenticate.scm \
434 tests/glob.scm \
435 tests/gnu-maintenance.scm \
436 tests/grafts.scm \
437 tests/graph.scm \
438 tests/gremlin.scm \
439 tests/hackage.scm \
440 tests/import-utils.scm \
441 tests/inferior.scm \
442 tests/lint.scm \
443 tests/modules.scm \
444 tests/monads.scm \
445 tests/nar.scm \
446 tests/networking.scm \
447 tests/offload.scm \
448 tests/opam.scm \
449 tests/openpgp.scm \
450 tests/packages.scm \
451 tests/pack.scm \
452 tests/pki.scm \
453 tests/print.scm \
454 tests/processes.scm \
455 tests/profiles.scm \
456 tests/publish.scm \
457 tests/pypi.scm \
458 tests/records.scm \
459 tests/scripts.scm \
460 tests/search-paths.scm \
461 tests/services.scm \
462 tests/services/linux.scm \
463 tests/sets.scm \
464 tests/size.scm \
465 tests/snix.scm \
466 tests/status.scm \
467 tests/store-database.scm \
468 tests/store-deduplication.scm \
469 tests/store-roots.scm \
470 tests/store.scm \
471 tests/substitute.scm \
472 tests/swh.scm \
473 tests/syscalls.scm \
474 tests/system.scm \
475 tests/texlive.scm \
476 tests/transformations.scm \
477 tests/ui.scm \
478 tests/union.scm \
479 tests/upstream.scm \
480 tests/utils.scm \
481 tests/uuid.scm \
482 tests/workers.scm
483
484 SH_TESTS = \
485 tests/guix-build.sh \
486 tests/guix-build-branch.sh \
487 tests/guix-download.sh \
488 tests/guix-gc.sh \
489 tests/guix-git-authenticate.sh \
490 tests/guix-hash.sh \
491 tests/guix-pack.sh \
492 tests/guix-pack-localstatedir.sh \
493 tests/guix-pack-relocatable.sh \
494 tests/guix-package.sh \
495 tests/guix-package-aliases.sh \
496 tests/guix-package-net.sh \
497 tests/guix-system.sh \
498 tests/guix-archive.sh \
499 tests/guix-authenticate.sh \
500 tests/guix-environment.sh \
501 tests/guix-environment-container.sh \
502 tests/guix-graph.sh \
503 tests/guix-describe.sh \
504 tests/guix-repl.sh \
505 tests/guix-lint.sh
506
507 TESTS = $(SCM_TESTS) $(SH_TESTS)
508
509 AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
510
511 SCM_LOG_DRIVER = \
512 $(top_builddir)/test-env --quiet-stderr \
513 $(GUILE) --no-auto-compile -e main \
514 $(top_srcdir)/build-aux/test-driver.scm
515
516 AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
517
518 SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
519 AM_SH_LOG_FLAGS = -x -e
520
521 # Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
522 # could end up removing files from the store while they are being used by
523 # other instances of the daemon.
524 tests/guix-gc.log: \
525 $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
526 $(SCM_TESTS:%.scm=%.log)
527
528 else !CAN_RUN_TESTS
529
530 TESTS =
531 SH_TESTS =
532 SCM_TESTS =
533
534 # Automake always generates a 'check' target, so better not override it.
535 check-local:
536 @echo
537 @echo "Cannot run tests because file name limits would be exceeded." >&2
538 @echo "Look for 'length' in the 'config.log' file for details." >&2
539 @echo
540 @exit 1
541
542 endif !CAN_RUN_TESTS
543
544 check-system: $(GOBJECTS)
545 $(AM_V_at)$(top_builddir)/pre-inst-env \
546 guix build -m $(top_srcdir)/etc/system-tests.scm -K
547
548 # Public keys used to sign substitutes.
549 dist_pkgdata_DATA = \
550 etc/substitutes/berlin.guix.gnu.org.pub \
551 etc/substitutes/ci.guix.gnu.org.pub \
552 etc/substitutes/ci.guix.info.pub
553
554 # Bash completion file.
555 dist_bashcompletion_DATA = etc/completion/bash/guix \
556 etc/completion/bash/guix-daemon
557
558 # Zsh completion file.
559 dist_zshcompletion_DATA = etc/completion/zsh/_guix
560
561 # Fish completion file.
562 dist_fishcompletion_DATA = etc/completion/fish/guix.fish
563
564 # SELinux policy
565 nodist_selinux_policy_DATA = etc/guix-daemon.cil.in
566
567 EXTRA_DIST += \
568 HACKING \
569 ROADMAP \
570 TODO \
571 CODE-OF-CONDUCT \
572 .dir-locals.el \
573 .guix-channel \
574 scripts/guix.in \
575 etc/guix-install.sh \
576 etc/news.scm \
577 etc/release-manifest.scm \
578 etc/system-tests.scm \
579 etc/historical-authorizations \
580 build-aux/build-self.scm \
581 build-aux/compile-all.scm \
582 build-aux/hydra/evaluate.scm \
583 build-aux/hydra/gnu-system.scm \
584 build-aux/hydra/guix.scm \
585 build-aux/hydra/guix-modular.scm \
586 build-aux/cuirass/gnu-system.scm \
587 build-aux/cuirass/guix-modular.scm \
588 build-aux/cuirass/hurd-manifest.scm \
589 build-aux/cuirass/hydra-to-cuirass.scm \
590 build-aux/check-final-inputs-self-contained.scm \
591 build-aux/check-channel-news.scm \
592 build-aux/compile-as-derivation.scm \
593 build-aux/generate-authors.scm \
594 build-aux/test-driver.scm \
595 build-aux/update-guix-package.scm \
596 build-aux/update-NEWS.scm \
597 d3.v3.js \
598 graph.js \
599 tests/test.drv \
600 tests/signing-key.pub \
601 tests/signing-key.sec \
602 tests/cve-sample.json \
603 tests/civodul.key \
604 tests/rsa.key \
605 tests/dsa.key \
606 tests/ed25519.key \
607 tests/ed25519.sec \
608 tests/ed25519bis.key \
609 tests/ed25519bis.sec \
610 build-aux/config.rpath \
611 bootstrap \
612 doc/build.scm \
613 $(TESTS)
614
615 if !BUILD_DAEMON_OFFLOAD
616
617 EXTRA_DIST += \
618 guix/scripts/offload.scm
619
620 endif !BUILD_DAEMON_OFFLOAD
621
622
623 CLEANFILES = \
624 $(bin_SCRIPTS) \
625 $(GOBJECTS) \
626 $(SCM_TESTS:tests/%.scm=%.log)
627
628 # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if
629 # $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
630 # there that are newer than the local .scm files (for instance because the
631 # user ran 'make install' recently). When that happens, we end up loading
632 # those previously-installed .go files, which may be stale, thereby breaking
633 # the whole thing. Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
634 # stale files from ~/.cache/guile/ccache.
635 %.go: make-go ; @:
636 make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
637 $(AM_V_at)echo "Compiling Scheme modules..." ; \
638 unset GUILE_LOAD_COMPILED_PATH ; \
639 XDG_CACHE_HOME=/nowhere \
640 host=$(host) srcdir="$(top_srcdir)" \
641 $(top_builddir)/pre-inst-env \
642 $(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)" \
643 --no-auto-compile \
644 -s "$(top_srcdir)"/build-aux/compile-all.scm $^
645
646 SUFFIXES = .go
647
648 # Make sure source files are installed first, so that the mtime of
649 # installed compiled files is greater than that of installed source
650 # files. See
651 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
652 # for details.
653 guix_install_go_files = install-nobase_nodist_guileobjectDATA
654 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
655
656 # The above trick doesn't work for 'config.go' because both 'config.scm' and
657 # 'config.go' are listed in $(nobase_nodist_guileobject_DATA). Thus, give it
658 # special treatment.
659 install-data-hook:
660 touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
661
662 # Commit corresponding to the 'v1.0.0' tag.
663 commit_v1_0_0 = 6298c3ffd9654d3231a6f25390b056483e8f407c
664
665 # Introduction of the 'guix' channel. Keep in sync with (guix channels)!
666 channel_intro_commit = 9edb3f66fd807b096b48283debdcddccfea34bad
667 channel_intro_signer = BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA
668
669 # Authenticate the current Git checkout by checking signatures on every commit.
670 GUIX_GIT_KEYRING = origin/keyring
671 authenticate:
672 $(AM_V_at)echo "Authenticating Git checkout..." ; \
673 guix git authenticate \
674 --keyring=$(GUIX_GIT_KEYRING) \
675 --cache-key=channels/guix --stats \
676 "$(channel_intro_commit)" "$(channel_intro_signer)"
677
678 # Assuming Guix is already installed and the daemon is up and running, this
679 # rule builds from $(srcdir), creating and building derivations.
680 as-derivation:
681 $(AM_V_at)echo "Building Guix in Guix..." ; \
682 $(GUILE) --no-auto-compile \
683 "$(top_srcdir)/build-aux/compile-as-derivation.scm" \
684 "$(abs_top_srcdir)"
685
686 SUBDIRS = po/guix po/packages
687 BUILT_SOURCES =
688
689 include doc/local.mk
690
691 if BUILD_DAEMON
692
693 include nix/local.mk
694
695 endif BUILD_DAEMON
696
697 ACLOCAL_AMFLAGS = -I m4
698
699 # Pass an explicit '--localstatedir' so that configure does not error out if
700 # it finds an existing installation with a different localstatedir. Inherit
701 # 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
702 # repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
703 # enough for shebangs.
704 AM_DISTCHECK_CONFIGURE_FLAGS = \
705 --localstatedir="$$dc_install_base/var" \
706 --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
707 --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
708 --with-nix-prefix="$(NIX_PREFIX)" \
709 --enable-daemon \
710 ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
711
712 # Name of the 'guix' package shipped in the binary tarball.
713 GUIX_FOR_BINARY_TARBALL = guix
714
715 # The self-contained tarball.
716 guix-binary.%.tar.xz:
717 $(AM_V_GEN)GUIX_PACKAGE_PATH= \
718 tarball=`$(top_builddir)/pre-inst-env guix pack -C xz \
719 --fallback \
720 -s "$*" --localstatedir --profile-name=current-guix \
721 $(GUIX_FOR_BINARY_TARBALL)` ; \
722 cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
723
724
725 dist-hook: gen-ChangeLog gen-AUTHORS gen-tarball-version
726 dist-hook: assert-no-store-file-names
727 dist-hook: doc-po-update
728
729 distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
730
731 EXTRA_DIST += $(top_srcdir)/.version
732 BUILT_SOURCES += $(top_srcdir)/.version
733 $(top_srcdir)/.version:
734 echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
735
736 gen-tarball-version:
737 echo $(VERSION) > "$(distdir)/.tarball-version"
738
739 gen-ChangeLog:
740 $(AM_V_GEN)if test -d .git; then \
741 $(top_srcdir)/build-aux/gitlog-to-changelog \
742 > $(distdir)/ChangeLog.tmp; \
743 rm -f $(distdir)/ChangeLog; \
744 mv $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog; \
745 fi
746
747 gen-AUTHORS:
748 $(AM_V_GEN)if test -d .git; then \
749 rm -f "$(distdir)/AUTHORS"; \
750 $(top_builddir)/pre-inst-env "$(GUILE)" \
751 "$(top_srcdir)/build-aux/generate-authors.scm" \
752 "$(top_srcdir)" "$(distdir)/AUTHORS"; \
753 fi
754
755 # Like 'dist', but regenerate 'configure' so we get an up-to-date
756 # 'PACKAGE_VERSION' string. (In Gnulib, 'GNUmakefile' has a special trick to
757 # do that whenever a 'dist' target is used.)
758 dist-with-updated-version:
759 @echo "Running './bootstrap' for new version string..."
760 $(top_srcdir)/bootstrap
761 $(MAKE) $(AM_MAKEFLAGS) $(top_srcdir)/.version dist
762
763 .PHONY: dist-with-updated-version
764
765 \f
766 #
767 # Release management.
768 #
769
770 releasedir = release-$(PACKAGE_VERSION)
771
772 PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
773
774 # List of source tarballs produced. This must be kept in sync with the
775 # 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
776 SOURCE_TARBALLS = \
777 $(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
778
779 # Systems supported by Guix.
780 SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux aarch64-linux
781
782 # Guix binary tarballs.
783 BINARY_TARBALLS = \
784 $(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
785
786 # Systems supported by Guix System.
787 GUIX_SYSTEM_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
788
789 # Systems for which we build Guix VMs.
790 GUIX_SYSTEM_VM_SYSTEMS ?= x86_64-linux
791
792 # Prefix of the Guix installation image file name.
793 GUIX_SYSTEM_IMAGE_BASE = guix-system-install-$(PACKAGE_VERSION)
794
795 # Prefix of the Guix VM image file name.
796 GUIX_SYSTEM_VM_IMAGE_BASE = guix-system-vm-image-$(PACKAGE_VERSION)
797
798 # Flags for 'guix system vm-image'. By default create a VM image that appears
799 # to have a 20G hard disk.
800 GUIX_SYSTEM_VM_IMAGE_FLAGS ?= --image-size=30G
801
802 # Return the sequence of '-s' flags for the given systems.
803 system_flags = $(foreach system,$(1),-s $(system))
804
805 # The release process works in several phases:
806 #
807 # 0. We assume the developer created a 'vX.Y' tag.
808 # 1. Build the source tarball.
809 # 2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
810 # 3. Build the binary tarballs for that 'guix' package.
811 # 4. Update the 'guix' package again.
812 # 5. Build the installation images. The images will run 'guix'
813 # corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
814 #
815 # This 'release' target takes care of everything and copies the resulting
816 # files to $(releasedir).
817 #
818 # XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
819 # issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
820 release: dist-with-updated-version
821 cd po; git checkout .
822 @if ! git diff-index --quiet HEAD; then \
823 echo "There are uncommitted changes; stopping." >&2 ; \
824 exit 1 ; \
825 fi
826 $(MKDIR_P) "$(releasedir)"
827 rm -f "$(releasedir)"/*
828 mv $(SOURCE_TARBALLS) "$(releasedir)"
829 GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT=yes \
830 $(top_builddir)/pre-inst-env "$(GUILE)" \
831 $(top_srcdir)/build-aux/update-guix-package.scm \
832 "`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
833 git add $(top_srcdir)/gnu/packages/package-management.scm
834 git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
835 $(top_builddir)/pre-inst-env guix build $(GUIX_FOR_BINARY_TARBALL) \
836 $(call system_flags,$(SUPPORTED_SYSTEMS)) \
837 -v1 --no-grafts --fallback
838 rm -f $(BINARY_TARBALLS)
839 $(MAKE) $(BINARY_TARBALLS)
840 for system in $(SUPPORTED_SYSTEMS) ; do \
841 mv "guix-binary.$$system.tar.xz" \
842 "$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ; \
843 done
844 GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT=yes \
845 $(top_builddir)/pre-inst-env "$(GUILE)" \
846 $(top_srcdir)/build-aux/update-guix-package.scm \
847 "`git rev-parse HEAD`"
848 git add $(top_srcdir)/gnu/packages/package-management.scm
849 git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
850 $(top_builddir)/pre-inst-env guix build guix \
851 $(call system_flags,$(GUIX_SYSTEM_SUPPORTED_SYSTEMS)) \
852 -v1 --no-grafts --fallback
853 for system in $(GUIX_SYSTEM_SUPPORTED_SYSTEMS) ; do \
854 image=`$(top_builddir)/pre-inst-env \
855 guix system disk-image -t iso9660 \
856 --label="GUIX_$${system}_$(VERSION)" \
857 --system=$$system --fallback \
858 gnu/system/install.scm` ; \
859 if [ ! -f "$$image" ] ; then \
860 echo "failed to produced Guix installation image for $$system" >&2 ; \
861 exit 1 ; \
862 fi ; \
863 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" ; \
864 mv "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" \
865 "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz" ; \
866 done
867 for system in $(GUIX_SYSTEM_VM_SYSTEMS) ; do \
868 image=`$(top_builddir)/pre-inst-env \
869 guix system vm-image $(GUIX_SYSTEM_VM_IMAGE_FLAGS) \
870 --save-provenance \
871 --system=$$system --fallback \
872 gnu/system/examples/vm-image.tmpl` ; \
873 if [ ! -f "$$image" ] ; then \
874 echo "failed to produced Guix VM image for $$system" >&2 ; \
875 exit 1 ; \
876 fi ; \
877 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" ; \
878 mv "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" \
879 "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz" ; \
880 done
881 @echo
882 @echo "Congratulations! All the release files are now in $(releasedir)."
883 @echo
884
885 update-guix-package:
886 git rev-parse HEAD
887 $(top_builddir)/pre-inst-env "$(GUILE)" \
888 $(top_srcdir)/build-aux/update-guix-package.scm \
889 "`git rev-parse HEAD`"
890
891 # Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
892 # Package data from this checkout is used by 'update-NEWS.scm'.
893 GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
894
895 update-NEWS: $(GOBJECTS)
896 $(top_builddir)/pre-inst-env "$(GUILE)" \
897 $(top_srcdir)/build-aux/update-NEWS.scm \
898 $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
899
900 # Make sure we're not shipping a file that embeds a local /gnu/store file name.
901 assert-no-store-file-names:
902 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
903 --exclude=*.info-[0-9] --exclude=*.dot \
904 --exclude=*.eps --exclude-dir=bootstrap \
905 --exclude=guix-manual.pot --exclude=guix-manual.*.po \
906 --exclude=guix-cookbook.pot --exclude=guix-cookbook.*.po \
907 --exclude=guix-prettify.el \
908 --exclude=ChangeLog* \
909 --exclude=binutils-boot-2.20*.patch \
910 -E "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
911 then \
912 echo "error: store file names embedded in the distribution" >&2 ; \
913 exit 1 ; \
914 fi
915
916 # Make sure important substitutes are available.
917 assert-binaries-available: $(GOBJECTS)
918 $(AM_V_at)$(top_builddir)/pre-inst-env \
919 guix weather -m "$(top_srcdir)/etc/release-manifest.scm" \
920 --display-missing
921
922 # Make sure the final inputs don't refer to bootstrap tools.
923 assert-final-inputs-self-contained: $(GOBJECTS)
924 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
925 "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
926
927 # Validate channel news.
928 check-channel-news: $(GOBJECTS)
929 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
930 "$(top_srcdir)/build-aux/check-channel-news.scm"
931
932 # Compute the Hydra jobs and write them in the target file.
933 hydra-jobs.scm: $(GOBJECTS)
934 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
935 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
936 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
937 "$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
938 $(AM_V_at)mv "$@.tmp" "$@"
939
940 # Compute the Cuirass jobs and write them in the target file.
941 cuirass-jobs.scm: $(GOBJECTS)
942 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
943 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
944 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
945 "$(top_srcdir)/build-aux/cuirass/gnu-system.scm" \
946 cuirass > "$@.tmp"
947 $(AM_V_at)mv "$@.tmp" "$@"
948
949 .PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
950 .PHONY: assert-no-store-file-names assert-binaries-available
951 .PHONY: assert-final-inputs-self-contained check-channel-news
952 .PHONY: clean-go make-go as-derivation authenticate
953 .PHONY: update-guix-package update-NEWS release
954
955 # Downloading up-to-date PO files.
956
957 # make-download-po-rule DOMAIN DIRECTORY [FILE-NAME-PREFIX]
958 define make-download-po-rule
959
960 download-po.$(1):
961 if [ -f "$(top_srcdir)/$(2)/LINGUAS" ]; then \
962 LINGUAS="`grep -v '^[[:blank:]]*#' < $(top_srcdir)/$(2)/LINGUAS`" ; \
963 else \
964 LINGUAS="`(cd $(top_srcdir)/$(2); \
965 for i in *.po; do echo $$$$i; done) | cut -d . -f 2`" ; \
966 fi ; \
967 for lang in $$$$LINGUAS; do \
968 if wget -nv -O "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" \
969 "https://translationproject.org/latest/$(1)/$$$$lang.po" ; \
970 then \
971 mv "$(top_srcdir)/$(2)/$(3)$$$$lang.po"{.tmp,} ; \
972 else \
973 rm "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" ; \
974 fi ; \
975 done
976
977 .PHONY: download-po.$(1)
978
979 endef
980
981 $(eval $(call make-download-po-rule,guix,po/guix))
982 $(eval $(call make-download-po-rule,guix-packages,po/packages))
983 $(eval $(call make-download-po-rule,guix-manual,po/doc,guix-manual.))
984
985 download-po: $(foreach domain,guix guix-packages guix-manual,download-po.$(domain))
986 .PHONY: download-po
987
988 ## -------------- ##
989 ## Silent rules. ##
990 ## -------------- ##
991
992 AM_V_DL = $(AM_V_DL_$(V))
993 AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
994 AM_V_DL_0 = @echo " DL " $@;
995
996 AM_V_DOT = $(AM_V_DOT_$(V))
997 AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
998 AM_V_DOT_0 = @echo " DOT " $@;
999
1000 AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
1001 AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
1002 AM_V_HELP2MAN_0 = @echo " HELP2MAN" $@;
1003
1004 AM_V_PO4A = $(AM_V_PO4A_$(V))
1005 AM_V_PO4A_ = $(AM_V_PO4A_$(AM_DEFAULT_VERBOSITY))
1006 AM_V_PO4A_0 = @echo " PO4A" $@;
1007
1008 AM_V_POXREF = $(AM_V_POXREF_$(V))
1009 AM_V_POXREF_ = $(AM_V_POXREF_$(AM_DEFAULT_VERBOSITY))
1010 AM_V_POXREF_0 = @echo " POXREF" $@;