service: Add shepherd discover action.
[jackhill/guix/guix.git] / Makefile.am
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
5ec4156b 2# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
f2499672 3# Copyright © 2013 Andreas Enge <andreas@enge.fr>
7994250f 4# Copyright © 2015, 2017 Alex Kost <alezost@gmail.com>
cba386c1 5# Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
274fa491 6# Copyright © 2016, 2017, 2018, 2019 Mark H Weaver <mhw@netris.org>
960887b2 7# Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
a6c642ef 8# Copyright © 2017 Leo Famulari <leo@famulari.name>
205794c8 9# Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
59bcffa3 10# Copyright © 2017, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
3d0aa7f7 11# Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
3c986a7d 12# Copyright © 2018 Nikita <nikita@n0.is>
b9fe8fd6 13# Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
bba0fa24 14# Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
53f316ab 15# Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
4e4c3114 16# Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
af51c820 17#
233e7676 18# This file is part of GNU Guix.
af51c820 19#
233e7676 20# GNU Guix is free software; you can redistribute it and/or modify it
af51c820
LC
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#
233e7676 25# GNU Guix is distributed in the hope that it will be useful, but
af51c820
LC
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
233e7676 31# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
af51c820 32
b9fe8fd6
JL
33MSGMERGE_UPDATE = @MSGMERGE@ --update
34
cba386c1
ML
35bin_SCRIPTS = scripts/guix
36
37# Handle substitution of fully-expanded Autoconf variables.
38do_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
44scripts/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" "$@"
14a1c319 49
880fe019
LC
50# This is our variant of the 'guile' executable, one that doesn't complain
51# about locales.
52pkglibexec_PROGRAMS = guile
53guile_SOURCES = gnu/packages/aux-files/guile-launcher.c
54guile_LDADD = $(GUILE_LIBS)
55guile_CFLAGS = $(GUILE_CFLAGS)
56
57# Have the 'guix' command refer to our 'guile'.
58install-exec-hook:
59 $(SED) -i "$(DESTDIR)$(bindir)/guix" \
60 -e 's,^#![[:graph:]]\+,#!$(pkglibexecdir)/guile,g'
61
58867ae7
MW
62nodist_noinst_SCRIPTS = \
63 pre-inst-env \
64 test-env
65
4aabc8ea
LC
66# Modules that are not compiled but are installed nonetheless, such as
67# build-side modules with unusual dependencies.
b8396f96 68MODULES_NOT_COMPILED = \
554b30d2 69 guix/build/po.scm \
b8396f96 70 guix/man-db.scm
4aabc8ea 71
03d0e2d2 72include gnu/local.mk
b9fe8fd6 73include po/doc/local.mk
d516736c 74
af51c820 75MODULES = \
4c0c4db0 76 guix/base16.scm \
ddc29a78 77 guix/base32.scm \
e9c6c584 78 guix/base64.scm \
6776af04 79 guix/ci.scm \
7a18c3cc 80 guix/cpio.scm \
787da810 81 guix/deprecation.scm \
6776af04 82 guix/docker.scm \
c0cd1b3e 83 guix/records.scm \
43408e30 84 guix/openpgp.scm \
8b420f74 85 guix/pki.scm \
8c348825 86 guix/progress.scm \
958dd3ce 87 guix/combinators.scm \
f9704f17 88 guix/memoization.scm \
73fbb904 89 guix/utils.scm \
d326767e 90 guix/sets.scm \
7ca87354 91 guix/modules.scm \
de1355f1 92 guix/download.scm \
cd903ef7 93 guix/discovery.scm \
3feb8464 94 guix/android-repo-download.scm \
4ac69ea1 95 guix/bzr-download.scm \
9b5b5c17 96 guix/git-download.scm \
c4e48b68 97 guix/hg-download.scm \
de2bfe90 98 guix/swh.scm \
b860f382 99 guix/monads.scm \
b9b86078 100 guix/monad-repl.scm \
21b679f6 101 guix/gexp.scm \
cc4ecc2d 102 guix/profiles.scm \
0f41c26f
LC
103 guix/serialization.scm \
104 guix/nar.scm \
af51c820 105 guix/derivations.scm \
7adf9b84 106 guix/grafts.scm \
92a4087b 107 guix/repl.scm \
f68b3ba1 108 guix/transformations.scm \
2ca299ca 109 guix/inferior.scm \
fe634eaf 110 guix/describe.scm \
20507347 111 guix/quirks.scm \
0d39a3b9 112 guix/channels.scm \
22189ed1 113 guix/gnu-maintenance.scm \
eaae07ec 114 guix/self.scm \
0a7c5a09 115 guix/upstream.scm \
838d78e3 116 guix/licenses.scm \
f363c836 117 guix/lint.scm \
f14c933d 118 guix/glob.scm \
7441f1db 119 guix/git.scm \
41f443c9 120 guix/git-authenticate.scm \
8fb58371 121 guix/graph.scm \
2ea2aac6 122 guix/cache.scm \
0eef7551 123 guix/cve.scm \
1563d6c7 124 guix/workers.scm \
208f7cd1 125 guix/build-system.scm \
436515cd 126 guix/build-system/android-ndk.scm \
5f7a1a4d 127 guix/build-system/ant.scm \
4b3cb7f4 128 guix/build-system/cargo.scm \
64f032d7 129 guix/build-system/chicken.scm \
1e5b79e5 130 guix/build-system/clojure.scm \
c6bded8a 131 guix/build-system/cmake.scm \
65e862d1 132 guix/build-system/dub.scm \
6e8986c8 133 guix/build-system/dune.scm \
e9137a53 134 guix/build-system/emacs.scm \
3d90fa98 135 guix/build-system/font.scm \
91525b48 136 guix/build-system/go.scm \
07c101e2 137 guix/build-system/meson.scm \
88c8f247 138 guix/build-system/minify.scm \
a1b30f99 139 guix/build-system/asdf.scm \
e90e6404 140 guix/build-system/copy.scm \
be3425e5 141 guix/build-system/glib-or-gtk.scm \
208f7cd1 142 guix/build-system/gnu.scm \
2a3b1b32 143 guix/build-system/guile.scm \
ce6fc7d6 144 guix/build-system/haskell.scm \
a44a535e 145 guix/build-system/julia.scm \
ce631299 146 guix/build-system/linux-module.scm \
55b90c90 147 guix/build-system/maven.scm \
09a1f92f 148 guix/build-system/node.scm \
08fd1ebe 149 guix/build-system/perl.scm \
40506d5d 150 guix/build-system/python.scm \
e6876cb9 151 guix/build-system/ocaml.scm \
b6d852ce 152 guix/build-system/qt.scm \
a677c726 153 guix/build-system/waf.scm \
f8f3bef6 154 guix/build-system/r.scm \
4e4c3114 155 guix/build-system/rakudo.scm \
c08f9818 156 guix/build-system/ruby.scm \
3d0aa7f7 157 guix/build-system/scons.scm \
205794c8 158 guix/build-system/texlive.scm \
be13fbfa 159 guix/build-system/trivial.scm \
457dd86d 160 guix/ftp-client.scm \
3b8258c5 161 guix/http-client.scm \
0fdd3bea 162 guix/gnupg.scm \
d5d16686 163 guix/elf.scm \
03870da8 164 guix/profiling.scm \
af51c820 165 guix/store.scm \
89328d24 166 guix/cvs-download.scm \
b3acf365 167 guix/svn-download.scm \
5d9f9ad6 168 guix/colors.scm \
37eed374 169 guix/i18n.scm \
1b5ee3bd 170 guix/diagnostics.scm \
073c34d7 171 guix/ui.scm \
dc0f74e5 172 guix/status.scm \
436515cd 173 guix/build/android-ndk-build-system.scm \
5f7a1a4d 174 guix/build/ant-build-system.scm \
62cab99c 175 guix/build/download.scm \
37ce440d 176 guix/build/download-nar.scm \
4b3cb7f4 177 guix/build/cargo-build-system.scm \
7d141788 178 guix/build/cargo-utils.scm \
64f032d7 179 guix/build/chicken-build-system.scm \
c6bded8a 180 guix/build/cmake-build-system.scm \
65e862d1 181 guix/build/dub-build-system.scm \
6e8986c8 182 guix/build/dune-build-system.scm \
e9137a53 183 guix/build/emacs-build-system.scm \
07c101e2 184 guix/build/meson-build-system.scm \
88c8f247 185 guix/build/minify-build-system.scm \
3d90fa98 186 guix/build/font-build-system.scm \
91525b48 187 guix/build/go-build-system.scm \
3feb8464 188 guix/build/android-repo.scm \
a1b30f99 189 guix/build/asdf-build-system.scm \
4ac69ea1 190 guix/build/bzr.scm \
e90e6404 191 guix/build/copy-build-system.scm \
9b5b5c17 192 guix/build/git.scm \
c4e48b68 193 guix/build/hg.scm \
be3425e5 194 guix/build/glib-or-gtk-build-system.scm \
9c9407f7 195 guix/build/gnu-bootstrap.scm \
af51c820 196 guix/build/gnu-build-system.scm \
fe12c345 197 guix/build/gnu-dist.scm \
2a3b1b32 198 guix/build/guile-build-system.scm \
55b90c90 199 guix/build/maven-build-system.scm \
09a1f92f 200 guix/build/node-build-system.scm \
08fd1ebe 201 guix/build/perl-build-system.scm \
40506d5d 202 guix/build/python-build-system.scm \
e6876cb9 203 guix/build/ocaml-build-system.scm \
b6d852ce 204 guix/build/qt-build-system.scm \
f8f3bef6 205 guix/build/r-build-system.scm \
4e4c3114 206 guix/build/rakudo-build-system.scm \
c08f9818 207 guix/build/ruby-build-system.scm \
3d0aa7f7 208 guix/build/scons-build-system.scm \
205794c8 209 guix/build/texlive-build-system.scm \
a677c726 210 guix/build/waf-build-system.scm \
9fd6c2ba 211 guix/build/haskell-build-system.scm \
a44a535e 212 guix/build/julia-build-system.scm \
ce631299 213 guix/build/linux-module-build-system.scm \
6fd1a796 214 guix/build/store-copy.scm \
a4bb1892 215 guix/build/json.scm \
1273d44a 216 guix/build/utils.scm \
c8c88afa 217 guix/build/union.scm \
611adb1e 218 guix/build/profiles.scm \
2890ad33 219 guix/build/compile.scm \
3309e3a1 220 guix/build/rpath.scm \
89328d24 221 guix/build/cvs.scm \
b3acf365 222 guix/build/svn.scm \
875715ca 223 guix/build/syscalls.scm \
15aa2c38 224 guix/build/gremlin.scm \
93c33389 225 guix/build/debug-link.scm \
1e5b79e5 226 guix/build/clojure-build-system.scm \
53f316ab 227 guix/build/clojure-utils.scm \
75f3b1a1 228 guix/build/emacs-utils.scm \
59135f0d 229 guix/build/java-utils.scm \
a1b30f99 230 guix/build/lisp-utils.scm \
3d3bc413
JL
231 guix/build/maven/java.scm \
232 guix/build/maven/plugin.scm \
233 guix/build/maven/pom.scm \
fb59e275 234 guix/build/graft.scm \
f2e4805b 235 guix/build/bournish.scm \
2098d024 236 guix/build/qt-utils.scm \
f13f60cb 237 guix/build/make-bootstrap.scm \
e89431bf 238 guix/search-paths.scm \
e3ce5d70 239 guix/packages.scm \
a4154748 240 guix/import/cabal.scm \
6776af04 241 guix/import/cpan.scm \
e1248602 242 guix/import/cran.scm \
6776af04 243 guix/import/crate.scm \
7f74a931 244 guix/import/elpa.scm \
6776af04
EB
245 guix/import/gem.scm \
246 guix/import/github.scm \
247 guix/import/gnome.scm \
248 guix/import/gnu.scm \
249 guix/import/hackage.scm \
250 guix/import/json.scm \
d1dce0c3 251 guix/import/kde.scm \
ae031d45 252 guix/import/launchpad.scm \
6776af04
EB
253 guix/import/opam.scm \
254 guix/import/print.scm \
255 guix/import/pypi.scm \
256 guix/import/snix.scm \
257 guix/import/stackage.scm \
afbc9419 258 guix/import/texlive.scm \
6776af04 259 guix/import/utils.scm \
88981dd3 260 guix/scripts.scm \
de1355f1 261 guix/scripts/download.scm \
94d92c77 262 guix/scripts/perform-download.scm \
de1355f1 263 guix/scripts/build.scm \
760c60d6 264 guix/scripts/archive.scm \
de1355f1
LC
265 guix/scripts/import.scm \
266 guix/scripts/package.scm \
d824cfba
LC
267 guix/scripts/install.scm \
268 guix/scripts/remove.scm \
269 guix/scripts/upgrade.scm \
da56f109 270 guix/scripts/search.scm \
aeb51370 271 guix/scripts/show.scm \
de1355f1
LC
272 guix/scripts/gc.scm \
273 guix/scripts/hash.scm \
239c2266 274 guix/scripts/pack.scm \
de1355f1 275 guix/scripts/pull.scm \
63eb2b89 276 guix/scripts/processes.scm \
2c74fde0 277 guix/scripts/substitute.scm \
526382ff 278 guix/scripts/authenticate.scm \
de1355f1 279 guix/scripts/refresh.scm \
2ca299ca 280 guix/scripts/repl.scm \
bd747018 281 guix/scripts/describe.scm \
523e4896 282 guix/scripts/system.scm \
0649321d 283 guix/scripts/system/search.scm \
5c793753 284 guix/scripts/system/reconfigure.scm \
b4f5e0e8 285 guix/scripts/lint.scm \
d23c20f1 286 guix/scripts/challenge.scm \
6776af04 287 guix/scripts/import/crate.scm \
e1248602 288 guix/scripts/import/cran.scm \
6776af04
EB
289 guix/scripts/import/elpa.scm \
290 guix/scripts/import/gem.scm \
7047133f 291 guix/scripts/import/gnu.scm \
a4154748 292 guix/scripts/import/hackage.scm \
6776af04
EB
293 guix/scripts/import/json.scm \
294 guix/scripts/import/nix.scm \
295 guix/scripts/import/opam.scm \
296 guix/scripts/import/pypi.scm \
297 guix/scripts/import/stackage.scm \
afbc9419 298 guix/scripts/import/texlive.scm \
372c4bbc 299 guix/scripts/environment.scm \
aff8ce7c 300 guix/scripts/publish.scm \
39bee8a2 301 guix/scripts/edit.scm \
fcc58db6 302 guix/scripts/size.scm \
a9871278
LC
303 guix/scripts/git.scm \
304 guix/scripts/git/authenticate.scm \
88856916 305 guix/scripts/graph.scm \
6776af04 306 guix/scripts/weather.scm \
32efa254
DT
307 guix/scripts/container.scm \
308 guix/scripts/container/exec.scm \
5cbb832f 309 guix/scripts/deploy.scm \
f675f8de 310 guix/scripts/time-machine.scm \
e3ce5d70 311 guix.scm \
d516736c 312 $(GNU_SYSTEM_MODULES)
af51c820 313
987a29ba
LC
314if HAVE_GUILE_SSH
315
316MODULES += \
f11c444d 317 guix/ssh.scm \
9d8ab803 318 guix/remote.scm \
285f63e8
LC
319 guix/scripts/copy.scm \
320 guix/store/ssh.scm
987a29ba
LC
321
322endif HAVE_GUILE_SSH
323
35a32fef
MO
324if HAVE_GUILE_AVAHI
325
326MODULES += \
327 guix/avahi.scm \
328 guix/scripts/discover.scm
329
330endif HAVE_GUILE_AVAHI
331
49e6291a
LC
332if BUILD_DAEMON_OFFLOAD
333
334MODULES += \
335 guix/scripts/offload.scm
336
337endif BUILD_DAEMON_OFFLOAD
338
7f9d184d
CR
339# Scheme implementation of the build daemon and related functionality.
340STORE_MODULES = \
bf5bf577 341 guix/store/database.scm \
72eda062
LC
342 guix/store/deduplication.scm \
343 guix/store/roots.scm
7f9d184d 344
7f9d184d 345MODULES += $(STORE_MODULES)
7f9d184d 346
17ab08bc 347# Internal modules with test suite support.
873f6f13
LC
348dist_noinst_DATA = \
349 guix/tests.scm \
350 guix/tests/http.scm \
c83eedba
LC
351 guix/tests/git.scm \
352 guix/tests/gnupg.scm
c1bc358f 353
7994250f
AK
354# Auxiliary files for packages.
355AUX_FILES = \
a7e70ec2 356 gnu/packages/aux-files/chromium/master-preferences.json \
59d04f63 357 gnu/packages/aux-files/emacs/guix-emacs.el \
23a110aa
LF
358 gnu/packages/aux-files/linux-libre/5.9-arm.conf \
359 gnu/packages/aux-files/linux-libre/5.9-arm64.conf \
360 gnu/packages/aux-files/linux-libre/5.9-i686.conf \
361 gnu/packages/aux-files/linux-libre/5.9-x86_64.conf \
952820c5 362 gnu/packages/aux-files/linux-libre/5.4-arm.conf \
952820c5
MW
363 gnu/packages/aux-files/linux-libre/5.4-arm64.conf \
364 gnu/packages/aux-files/linux-libre/5.4-i686.conf \
365 gnu/packages/aux-files/linux-libre/5.4-x86_64.conf \
ce7ceef3
MW
366 gnu/packages/aux-files/linux-libre/4.19-arm.conf \
367 gnu/packages/aux-files/linux-libre/4.19-arm64.conf \
368 gnu/packages/aux-files/linux-libre/4.19-i686.conf \
369 gnu/packages/aux-files/linux-libre/4.19-x86_64.conf \
c114c9c5
MW
370 gnu/packages/aux-files/linux-libre/4.14-arm.conf \
371 gnu/packages/aux-files/linux-libre/4.14-i686.conf \
372 gnu/packages/aux-files/linux-libre/4.14-x86_64.conf \
7994250f
AK
373 gnu/packages/aux-files/linux-libre/4.9-i686.conf \
374 gnu/packages/aux-files/linux-libre/4.9-x86_64.conf \
375 gnu/packages/aux-files/linux-libre/4.4-i686.conf \
376 gnu/packages/aux-files/linux-libre/4.4-x86_64.conf \
64562321 377 gnu/packages/aux-files/pack-audit.c \
47a60325 378 gnu/packages/aux-files/run-in-namespace.c
1959fb04 379
ebc32b31
LC
380# Templates, examples.
381EXAMPLES = \
df2a9616 382 gnu/system/examples/asus-c201.tmpl \
36ffaca2 383 gnu/system/examples/bare-bones.tmpl \
59bcffa3 384 gnu/system/examples/bare-hurd.tmpl \
9f1e39d1 385 gnu/system/examples/beaglebone-black.tmpl \
d038b674 386 gnu/system/examples/desktop.tmpl \
a6c642ef 387 gnu/system/examples/lightweight-desktop.tmpl \
1b0d2b2a 388 gnu/system/examples/docker-image.tmpl \
a6c642ef 389 gnu/system/examples/vm-image.tmpl
ebc32b31 390
17ab08bc 391GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
af51c820 392
4aabc8ea 393nobase_dist_guilemodule_DATA = \
3931c761 394 guix/store/schema.sql \
4aabc8ea 395 $(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES) \
74574fd1 396 $(MISC_DISTRO_FILES)
9437fd73
LC
397nobase_nodist_guilemodule_DATA = guix/config.scm
398nobase_nodist_guileobject_DATA = $(GOBJECTS)
800cdeef 399
70a9c720
LC
400# Handy way to remove the .go files without removing all the rest.
401clean-go:
402 -$(RM) -f $(GOBJECTS)
92becc3f 403 @find . -path ./test-tmp -prune -o -name '*.go' -print | \
cdf26f40
EB
404 if test -t 1; then \
405 xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
406 else \
407 xargs -r echo "warning: stray .go files:"; \
408 fi
70a9c720 409
af51c820 410
bb251307
LC
411# Test extensions; has to be unconditional.
412TEST_EXTENSIONS = .scm .sh
413
414if CAN_RUN_TESTS
415
30dd8310 416SCM_TESTS = \
12277003 417 tests/accounts.scm \
4c0c4db0 418 tests/base16.scm \
ddc29a78 419 tests/base32.scm \
e9c6c584 420 tests/base64.scm \
9d449b94 421 tests/boot-parameters.scm \
12277003
RV
422 tests/bournish.scm \
423 tests/builders.scm \
424 tests/build-utils.scm \
425 tests/cache.scm \
426 tests/challenge.scm \
af12790b 427 tests/channels.scm \
12277003
RV
428 tests/combinators.scm \
429 tests/containers.scm \
6776af04 430 tests/cpan.scm \
7a18c3cc 431 tests/cpio.scm \
12277003 432 tests/cran.scm \
6776af04 433 tests/crate.scm \
12277003
RV
434 tests/cve.scm \
435 tests/debug-link.scm \
436 tests/derivations.scm \
cd903ef7 437 tests/discovery.scm \
7f74a931 438 tests/elpa.scm \
12277003
RV
439 tests/file-systems.scm \
440 tests/gem.scm \
21b679f6 441 tests/gexp.scm \
873f6f13 442 tests/git.scm \
c83eedba 443 tests/git-authenticate.scm \
12277003
RV
444 tests/glob.scm \
445 tests/gnu-maintenance.scm \
446 tests/grafts.scm \
447 tests/graph.scm \
15aa2c38 448 tests/gremlin.scm \
12277003
RV
449 tests/hackage.scm \
450 tests/import-utils.scm \
451 tests/inferior.scm \
aff8ce7c 452 tests/lint.scm \
12277003
RV
453 tests/modules.scm \
454 tests/monads.scm \
455 tests/nar.scm \
5658ae8a 456 tests/networking.scm \
4b5a6fbc 457 tests/offload.scm \
6776af04 458 tests/opam.scm \
43408e30 459 tests/openpgp.scm \
12277003 460 tests/packages.scm \
850edd77 461 tests/pack.scm \
12277003
RV
462 tests/pki.scm \
463 tests/print.scm \
464 tests/processes.scm \
465 tests/profiles.scm \
466 tests/publish.scm \
6776af04 467 tests/pypi.scm \
12277003
RV
468 tests/records.scm \
469 tests/scripts.scm \
12277003
RV
470 tests/search-paths.scm \
471 tests/services.scm \
d3e439e3 472 tests/services/linux.scm \
12277003
RV
473 tests/sets.scm \
474 tests/size.scm \
475 tests/snix.scm \
476 tests/status.scm \
c5a2e1ff 477 tests/store-database.scm \
12277003
RV
478 tests/store-deduplication.scm \
479 tests/store-roots.scm \
480 tests/store.scm \
481 tests/substitute.scm \
482 tests/swh.scm \
483 tests/syscalls.scm \
484 tests/system.scm \
485 tests/texlive.scm \
f68b3ba1 486 tests/transformations.scm \
12277003
RV
487 tests/ui.scm \
488 tests/union.scm \
489 tests/upstream.scm \
490 tests/utils.scm \
491 tests/uuid.scm \
4c0c65ac 492 tests/workers.scm
30dd8310
LC
493
494SH_TESTS = \
0afdc485 495 tests/guix-build.sh \
96915a44 496 tests/guix-build-branch.sh \
37d19403 497 tests/guix-download.sh \
fe8ff028 498 tests/guix-gc.sh \
a9871278 499 tests/guix-git-authenticate.sh \
ccbce848 500 tests/guix-hash.sh \
272c0709 501 tests/guix-pack.sh \
08f41083 502 tests/guix-pack-localstatedir.sh \
b07014f5 503 tests/guix-pack-relocatable.sh \
0820098d 504 tests/guix-package.sh \
d824cfba 505 tests/guix-package-aliases.sh \
57b86237 506 tests/guix-package-net.sh \
c1202fb1 507 tests/guix-system.sh \
760c60d6 508 tests/guix-archive.sh \
dd7c013d 509 tests/guix-authenticate.sh \
cad25264 510 tests/guix-environment.sh \
f535dcbe 511 tests/guix-environment-container.sh \
88856916 512 tests/guix-graph.sh \
bd747018 513 tests/guix-describe.sh \
c924e541 514 tests/guix-repl.sh \
dd7c013d 515 tests/guix-lint.sh
af51c820 516
30dd8310
LC
517TESTS = $(SCM_TESTS) $(SH_TESTS)
518
a9edb211 519AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
352ec143 520
4d9ed584
LC
521SCM_LOG_DRIVER = \
522 $(top_builddir)/test-env --quiet-stderr \
523 $(GUILE) --no-auto-compile -e main \
524 $(top_srcdir)/build-aux/test-driver.scm
525
a9edb211 526AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
97298ffa 527
69cfce50 528SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
97298ffa 529AM_SH_LOG_FLAGS = -x -e
af51c820 530
3a33730a
LC
531# Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
532# could end up removing files from the store while they are being used by
533# other instances of the daemon.
534tests/guix-gc.log: \
535 $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
536 $(SCM_TESTS:%.scm=%.log)
537
bb251307
LC
538else !CAN_RUN_TESTS
539
540TESTS =
541SH_TESTS =
542SCM_TESTS =
543
544# Automake always generates a 'check' target, so better not override it.
545check-local:
546 @echo
547 @echo "Cannot run tests because file name limits would be exceeded." >&2
548 @echo "Look for 'length' in the 'config.log' file for details." >&2
549 @echo
550 @exit 1
551
552endif !CAN_RUN_TESTS
553
4f024ef3 554check-system: $(GOBJECTS)
e9f693d0 555 $(AM_V_at)$(top_builddir)/pre-inst-env \
5ec4156b 556 guix build -m $(top_srcdir)/etc/system-tests.scm -K
e9f693d0 557
3a8bfebe 558# Public keys used to sign substitutes.
d9a0bd4c 559dist_pkgdata_DATA = \
d283bb96 560 etc/substitutes/berlin.guix.gnu.org.pub \
757e633d 561 etc/substitutes/ci.guix.gnu.org.pub \
6a837b60 562 etc/substitutes/ci.guix.info.pub
3a33730a 563
ee3e157d 564# Bash completion file.
bba0fa24
OP
565dist_bashcompletion_DATA = etc/completion/bash/guix \
566 etc/completion/bash/guix-daemon
ee3e157d 567
96dbc930
ELB
568# Zsh completion file.
569dist_zshcompletion_DATA = etc/completion/zsh/_guix
570
b83fc85f 571# Fish completion file.
572dist_fishcompletion_DATA = etc/completion/fish/guix.fish
573
b617a9fe 574# SELinux policy
d4031410 575nodist_selinux_policy_DATA = etc/guix-daemon.cil
b617a9fe 576
b9fe8fd6 577EXTRA_DIST += \
81f61c17
LC
578 HACKING \
579 ROADMAP \
580 TODO \
e15fcdd1 581 CODE-OF-CONDUCT \
81f61c17 582 .dir-locals.el \
627e61f1 583 .guix-authorizations \
dcc90d15 584 .guix-channel \
c92e5612 585 scripts/guix.in \
6f4e8693 586 etc/guix-install.sh \
90ca791a 587 etc/news.scm \
f292c501 588 etc/release-manifest.scm \
5ec4156b 589 etc/system-tests.scm \
4b9b8b2e 590 etc/historical-authorizations \
f81ac34d 591 build-aux/build-self.scm \
de6af327 592 build-aux/compile-all.scm \
89cbec89 593 build-aux/hydra/evaluate.scm \
81f61c17 594 build-aux/hydra/gnu-system.scm \
81f61c17 595 build-aux/hydra/guix.scm \
11a54b3d 596 build-aux/hydra/guix-modular.scm \
a1ec7540 597 build-aux/cuirass/gnu-system.scm \
351f384e 598 build-aux/cuirass/guix-modular.scm \
45265d55 599 build-aux/cuirass/hurd-manifest.scm \
a1ec7540 600 build-aux/cuirass/hydra-to-cuirass.scm \
81f61c17 601 build-aux/check-final-inputs-self-contained.scm \
1ad5209d 602 build-aux/check-channel-news.scm \
2cfc8d69 603 build-aux/compile-as-derivation.scm \
1c2ae810 604 build-aux/generate-authors.scm \
3cf0dbda 605 build-aux/test-driver.scm \
94fa8d76 606 build-aux/update-guix-package.scm \
920803fb 607 build-aux/update-NEWS.scm \
4d93f312
RW
608 d3.v3.js \
609 graph.js \
81f61c17
LC
610 tests/test.drv \
611 tests/signing-key.pub \
612 tests/signing-key.sec \
74afaa37 613 tests/cve-sample.json \
43408e30
LC
614 tests/civodul.key \
615 tests/rsa.key \
616 tests/dsa.key \
617 tests/ed25519.key \
618 tests/ed25519.sec \
c83eedba
LC
619 tests/ed25519bis.key \
620 tests/ed25519bis.sec \
81f61c17
LC
621 build-aux/config.rpath \
622 bootstrap \
ccadafdc 623 doc/build.scm \
ed795c06 624 $(TESTS)
d7672884 625
49e6291a
LC
626if !BUILD_DAEMON_OFFLOAD
627
628EXTRA_DIST += \
629 guix/scripts/offload.scm
630
631endif !BUILD_DAEMON_OFFLOAD
632
633
30dd8310 634CLEANFILES = \
cba386c1 635 $(bin_SCRIPTS) \
30dd8310 636 $(GOBJECTS) \
9bff16b3 637 $(SCM_TESTS:tests/%.scm=%.log)
af51c820 638
28561d85
LC
639# Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if
640# $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
641# there that are newer than the local .scm files (for instance because the
642# user ran 'make install' recently). When that happens, we end up loading
643# those previously-installed .go files, which may be stale, thereby breaking
d92e23dc
LC
644# the whole thing. Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
645# stale files from ~/.cache/guile/ccache.
de6af327 646%.go: make-go ; @:
17ab08bc 647make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
de6af327 648 $(AM_V_at)echo "Compiling Scheme modules..." ; \
28561d85 649 unset GUILE_LOAD_COMPILED_PATH ; \
d92e23dc 650 XDG_CACHE_HOME=/nowhere \
de6af327 651 host=$(host) srcdir="$(top_srcdir)" \
671d8f5e 652 $(top_builddir)/pre-inst-env \
de6af327
TUBK
653 $(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)" \
654 --no-auto-compile \
655 -s "$(top_srcdir)"/build-aux/compile-all.scm $^
af51c820
LC
656
657SUFFIXES = .go
658
659# Make sure source files are installed first, so that the mtime of
660# installed compiled files is greater than that of installed source
661# files. See
662# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
663# for details.
9437fd73 664guix_install_go_files = install-nobase_nodist_guileobjectDATA
af51c820 665$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
f68b0893 666
6005bd07 667# The above trick doesn't work for 'config.go' because both 'config.scm' and
9437fd73 668# 'config.go' are listed in $(nobase_nodist_guileobject_DATA). Thus, give it
6005bd07 669# special treatment.
92d00ca4 670install-data-hook:
9437fd73 671 touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
6005bd07 672
5d95ac91
LC
673# Commit corresponding to the 'v1.0.0' tag.
674commit_v1_0_0 = 6298c3ffd9654d3231a6f25390b056483e8f407c
1e43ab2c 675
96bf434c
LC
676# Introduction of the 'guix' channel. Keep in sync with (guix channels)!
677channel_intro_commit = 9edb3f66fd807b096b48283debdcddccfea34bad
678channel_intro_signer = BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA
679
1dba0b45 680# Authenticate the current Git checkout by checking signatures on every commit.
ef6596a2 681GUIX_GIT_KEYRING = origin/keyring
1dba0b45 682authenticate:
1e43ab2c 683 $(AM_V_at)echo "Authenticating Git checkout..." ; \
1dba0b45 684 guix git authenticate \
ef6596a2 685 --keyring=$(GUIX_GIT_KEYRING) \
96bf434c
LC
686 --cache-key=channels/guix --stats \
687 "$(channel_intro_commit)" "$(channel_intro_signer)"
1e43ab2c 688
2cfc8d69
LC
689# Assuming Guix is already installed and the daemon is up and running, this
690# rule builds from $(srcdir), creating and building derivations.
691as-derivation:
692 $(AM_V_at)echo "Building Guix in Guix..." ; \
693 $(GUILE) --no-auto-compile \
694 "$(top_srcdir)/build-aux/compile-as-derivation.scm" \
695 "$(abs_top_srcdir)"
6005bd07 696
ee764179 697SUBDIRS = po/guix po/packages
931c132a 698BUILT_SOURCES =
a9424c08 699
03d0e2d2 700include doc/local.mk
568717fd 701
c2033df4
LC
702if BUILD_DAEMON
703
03d0e2d2 704include nix/local.mk
c2033df4
LC
705
706endif BUILD_DAEMON
707
f68b0893 708ACLOCAL_AMFLAGS = -I m4
ef5f5c86
LC
709
710# Pass an explicit '--localstatedir' so that configure does not error out if
ddce2d3a
LC
711# it finds an existing installation with a different localstatedir. Inherit
712# 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
713# repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
714# enough for shebangs.
e76bdf8b 715AM_DISTCHECK_CONFIGURE_FLAGS = \
ef5f5c86 716 --localstatedir="$$dc_install_base/var" \
d388c2c4 717 --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
14af289e 718 --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
aca54b39 719 --with-nix-prefix="$(NIX_PREFIX)" \
ddce2d3a
LC
720 --enable-daemon \
721 ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
0e993428 722
808084e9 723# Name of the 'guix' package shipped in the binary tarball.
a30e7a72 724GUIX_FOR_BINARY_TARBALL = guix
808084e9 725
e9926f80 726# The self-contained tarball.
9d3fb6c7 727guix-binary.%.tar.xz:
33349e91 728 $(AM_V_GEN)GUIX_PACKAGE_PATH= \
1cfa6bcc 729 tarball=`$(top_builddir)/pre-inst-env guix pack -C xz \
98148830 730 --fallback \
808084e9
LC
731 -s "$*" --localstatedir --profile-name=current-guix \
732 $(GUIX_FOR_BINARY_TARBALL)` ; \
239c2266 733 cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
9d3fb6c7
LC
734
735
1f1a0050 736dist-hook: gen-ChangeLog gen-AUTHORS gen-tarball-version
a8ac45b1 737dist-hook: assert-no-store-file-names
7565d40e 738dist-hook: doc-po-update
a8ac45b1 739
81f61c17 740distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
e793178a 741
e6860b5e
LC
742EXTRA_DIST += $(top_srcdir)/.version
743BUILT_SOURCES += $(top_srcdir)/.version
c6e8f40f
LC
744$(top_srcdir)/.version: config.status
745 $(AM_V_GEN)echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
e6860b5e
LC
746
747gen-tarball-version:
748 echo $(VERSION) > "$(distdir)/.tarball-version"
749
1f1a0050 750gen-ChangeLog:
e71ad29d 751 $(AM_V_GEN)if test -d .git; then \
e793178a 752 $(top_srcdir)/build-aux/gitlog-to-changelog \
1f1a0050 753 > $(distdir)/ChangeLog.tmp; \
e793178a 754 rm -f $(distdir)/ChangeLog; \
1f1a0050 755 mv $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog; \
e793178a
LC
756 fi
757
a8ac45b1 758gen-AUTHORS:
e71ad29d 759 $(AM_V_GEN)if test -d .git; then \
ac140f79
LC
760 rm -f "$(distdir)/AUTHORS"; \
761 $(top_builddir)/pre-inst-env "$(GUILE)" \
762 "$(top_srcdir)/build-aux/generate-authors.scm" \
763 "$(top_srcdir)" "$(distdir)/AUTHORS"; \
764 fi
a8ac45b1 765
08b14ab2
LC
766# Like 'dist', but regenerate 'configure' so we get an up-to-date
767# 'PACKAGE_VERSION' string. (In Gnulib, 'GNUmakefile' has a special trick to
768# do that whenever a 'dist' target is used.)
769dist-with-updated-version:
770 @echo "Running './bootstrap' for new version string..."
771 $(top_srcdir)/bootstrap
772 $(MAKE) $(AM_MAKEFLAGS) $(top_srcdir)/.version dist
773
774.PHONY: dist-with-updated-version
775
334dce14
LC
776\f
777#
778# Release management.
779#
780
781releasedir = release-$(PACKAGE_VERSION)
782
783PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
784
785# List of source tarballs produced. This must be kept in sync with the
786# 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
787SOURCE_TARBALLS = \
788 $(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
789
790# Systems supported by Guix.
9d163ec1 791SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux aarch64-linux
334dce14
LC
792
793# Guix binary tarballs.
794BINARY_TARBALLS = \
795 $(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
796
13f62aef
LC
797# Systems supported by Guix System.
798GUIX_SYSTEM_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
334dce14 799
13f62aef
LC
800# Systems for which we build Guix VMs.
801GUIX_SYSTEM_VM_SYSTEMS ?= x86_64-linux
a6c642ef 802
13f62aef
LC
803# Prefix of the Guix installation image file name.
804GUIX_SYSTEM_IMAGE_BASE = guix-system-install-$(PACKAGE_VERSION)
334dce14 805
13f62aef
LC
806# Prefix of the Guix VM image file name.
807GUIX_SYSTEM_VM_IMAGE_BASE = guix-system-vm-image-$(PACKAGE_VERSION)
a6c642ef 808
dbab5eb8
LC
809# Flags for 'guix system vm-image'. By default create a VM image that appears
810# to have a 20G hard disk.
811GUIX_SYSTEM_VM_IMAGE_FLAGS ?= --image-size=30G
812
35a09fd9
LC
813# Return the sequence of '-s' flags for the given systems.
814system_flags = $(foreach system,$(1),-s $(system))
815
334dce14
LC
816# The release process works in several phases:
817#
818# 0. We assume the developer created a 'vX.Y' tag.
819# 1. Build the source tarball.
820# 2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
821# 3. Build the binary tarballs for that 'guix' package.
822# 4. Update the 'guix' package again.
13f62aef 823# 5. Build the installation images. The images will run 'guix'
334dce14
LC
824# corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
825#
826# This 'release' target takes care of everything and copies the resulting
827# files to $(releasedir).
73c791b8
LC
828#
829# XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
830# issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
08b14ab2 831release: dist-with-updated-version
2a396266
LC
832 cd po; git checkout .
833 @if ! git diff-index --quiet HEAD; then \
834 echo "There are uncommitted changes; stopping." >&2 ; \
835 exit 1 ; \
836 fi
334dce14
LC
837 $(MKDIR_P) "$(releasedir)"
838 rm -f "$(releasedir)"/*
839 mv $(SOURCE_TARBALLS) "$(releasedir)"
3de898b4
MC
840 GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT=yes \
841 $(top_builddir)/pre-inst-env "$(GUILE)" \
842 $(top_srcdir)/build-aux/update-guix-package.scm \
843 "`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
334dce14
LC
844 git add $(top_srcdir)/gnu/packages/package-management.scm
845 git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
808084e9 846 $(top_builddir)/pre-inst-env guix build $(GUIX_FOR_BINARY_TARBALL) \
35a09fd9 847 $(call system_flags,$(SUPPORTED_SYSTEMS)) \
98148830 848 -v1 --no-grafts --fallback
334dce14
LC
849 rm -f $(BINARY_TARBALLS)
850 $(MAKE) $(BINARY_TARBALLS)
851 for system in $(SUPPORTED_SYSTEMS) ; do \
852 mv "guix-binary.$$system.tar.xz" \
853 "$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ; \
854 done
3de898b4
MC
855 GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT=yes \
856 $(top_builddir)/pre-inst-env "$(GUILE)" \
857 $(top_srcdir)/build-aux/update-guix-package.scm \
858 "`git rev-parse HEAD`"
334dce14
LC
859 git add $(top_srcdir)/gnu/packages/package-management.scm
860 git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
35a09fd9
LC
861 $(top_builddir)/pre-inst-env guix build guix \
862 $(call system_flags,$(GUIX_SYSTEM_SUPPORTED_SYSTEMS)) \
98148830 863 -v1 --no-grafts --fallback
13f62aef 864 for system in $(GUIX_SYSTEM_SUPPORTED_SYSTEMS) ; do \
334dce14 865 image=`$(top_builddir)/pre-inst-env \
313f4926
MO
866 guix system disk-image -t iso9660 \
867 --label="GUIX_$${system}_$(VERSION)" \
98148830 868 --system=$$system --fallback \
334dce14
LC
869 gnu/system/install.scm` ; \
870 if [ ! -f "$$image" ] ; then \
13f62aef 871 echo "failed to produced Guix installation image for $$system" >&2 ; \
334dce14
LC
872 exit 1 ; \
873 fi ; \
13f62aef
LC
874 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" ; \
875 mv "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" \
876 "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz" ; \
334dce14 877 done
13f62aef 878 for system in $(GUIX_SYSTEM_VM_SYSTEMS) ; do \
a6c642ef 879 image=`$(top_builddir)/pre-inst-env \
dbab5eb8 880 guix system vm-image $(GUIX_SYSTEM_VM_IMAGE_FLAGS) \
9d0b9c7c 881 --save-provenance \
98148830 882 --system=$$system --fallback \
a6c642ef
LF
883 gnu/system/examples/vm-image.tmpl` ; \
884 if [ ! -f "$$image" ] ; then \
13f62aef 885 echo "failed to produced Guix VM image for $$system" >&2 ; \
a6c642ef
LF
886 exit 1 ; \
887 fi ; \
13f62aef
LC
888 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" ; \
889 mv "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" \
890 "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz" ; \
a6c642ef 891 done
2a396266
LC
892 @echo
893 @echo "Congratulations! All the release files are now in $(releasedir)."
894 @echo
334dce14 895
94fa8d76
LC
896update-guix-package:
897 git rev-parse HEAD
898 $(top_builddir)/pre-inst-env "$(GUILE)" \
899 $(top_srcdir)/build-aux/update-guix-package.scm \
900 "`git rev-parse HEAD`"
901
920803fb
LC
902# Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
903# Package data from this checkout is used by 'update-NEWS.scm'.
904GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
905
906update-NEWS: $(GOBJECTS)
907 $(top_builddir)/pre-inst-env "$(GUILE)" \
908 $(top_srcdir)/build-aux/update-NEWS.scm \
909 $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
910
834129e0 911# Make sure we're not shipping a file that embeds a local /gnu/store file name.
1f1a0050 912assert-no-store-file-names:
e71ad29d 913 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
69e7322f
LC
914 --exclude=*.info-[0-9] --exclude=*.dot \
915 --exclude=*.eps --exclude-dir=bootstrap \
7bc46ecc
RW
916 --exclude=guix-manual.pot --exclude=guix-manual.*.po \
917 --exclude=guix-cookbook.pot --exclude=guix-cookbook.*.po \
69e7322f 918 --exclude=guix-prettify.el \
1f1a0050 919 --exclude=ChangeLog* \
0b2ea781 920 --exclude=binutils-boot-2.20*.patch \
69e7322f 921 -E "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
a463ffd9
LC
922 then \
923 echo "error: store file names embedded in the distribution" >&2 ; \
924 exit 1 ; \
925 fi
926
0bc02bec 927# Make sure important substitutes are available.
93cba30c 928assert-binaries-available: $(GOBJECTS)
f292c501
LC
929 $(AM_V_at)$(top_builddir)/pre-inst-env \
930 guix weather -m "$(top_srcdir)/etc/release-manifest.scm" \
931 --display-missing
56fbf262 932
81f61c17 933# Make sure the final inputs don't refer to bootstrap tools.
93cba30c 934assert-final-inputs-self-contained: $(GOBJECTS)
e71ad29d 935 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
81f61c17
LC
936 "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
937
1ad5209d
LC
938# Validate channel news.
939check-channel-news: $(GOBJECTS)
940 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
941 "$(top_srcdir)/build-aux/check-channel-news.scm"
942
89cbec89
LC
943# Compute the Hydra jobs and write them in the target file.
944hydra-jobs.scm: $(GOBJECTS)
945 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
946 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
947 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
948 "$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
28dee3d2 949 $(AM_V_at)mv "$@.tmp" "$@"
89cbec89 950
454caca8
JN
951# Compute the Cuirass jobs and write them in the target file.
952cuirass-jobs.scm: $(GOBJECTS)
953 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
954 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
955 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
956 "$(top_srcdir)/build-aux/cuirass/gnu-system.scm" \
957 cuirass > "$@.tmp"
958 $(AM_V_at)mv "$@.tmp" "$@"
959
e6860b5e 960.PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
56fbf262 961.PHONY: assert-no-store-file-names assert-binaries-available
1ad5209d 962.PHONY: assert-final-inputs-self-contained check-channel-news
1e43ab2c 963.PHONY: clean-go make-go as-derivation authenticate
920803fb 964.PHONY: update-guix-package update-NEWS release
8c3d8894 965
61a224ad
LC
966# Downloading up-to-date PO files.
967
968# make-download-po-rule DOMAIN DIRECTORY [FILE-NAME-PREFIX]
969define make-download-po-rule
970
971download-po.$(1):
972 if [ -f "$(top_srcdir)/$(2)/LINGUAS" ]; then \
973 LINGUAS="`grep -v '^[[:blank:]]*#' < $(top_srcdir)/$(2)/LINGUAS`" ; \
974 else \
975 LINGUAS="`(cd $(top_srcdir)/$(2); \
976 for i in *.po; do echo $$$$i; done) | cut -d . -f 2`" ; \
977 fi ; \
978 for lang in $$$$LINGUAS; do \
979 if wget -nv -O "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" \
980 "https://translationproject.org/latest/$(1)/$$$$lang.po" ; \
981 then \
982 mv "$(top_srcdir)/$(2)/$(3)$$$$lang.po"{.tmp,} ; \
983 else \
984 rm "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" ; \
985 fi ; \
986 done
987
988.PHONY: download-po.$(1)
989
990endef
991
992$(eval $(call make-download-po-rule,guix,po/guix))
993$(eval $(call make-download-po-rule,guix-packages,po/packages))
994$(eval $(call make-download-po-rule,guix-manual,po/doc,guix-manual.))
995
996download-po: $(foreach domain,guix guix-packages guix-manual,download-po.$(domain))
997.PHONY: download-po
998
8c3d8894
ML
999## -------------- ##
1000## Silent rules. ##
1001## -------------- ##
1002
1003AM_V_DL = $(AM_V_DL_$(V))
1004AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
1005AM_V_DL_0 = @echo " DL " $@;
4c48878d
ML
1006
1007AM_V_DOT = $(AM_V_DOT_$(V))
1008AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
1009AM_V_DOT_0 = @echo " DOT " $@;
71ed439b 1010
8dddedf7
ML
1011AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
1012AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
1013AM_V_HELP2MAN_0 = @echo " HELP2MAN" $@;
b9fe8fd6
JL
1014
1015AM_V_PO4A = $(AM_V_PO4A_$(V))
1016AM_V_PO4A_ = $(AM_V_PO4A_$(AM_DEFAULT_VERBOSITY))
1017AM_V_PO4A_0 = @echo " PO4A" $@;
06c4778a
LC
1018
1019AM_V_POXREF = $(AM_V_POXREF_$(V))
1020AM_V_POXREF_ = $(AM_V_POXREF_$(AM_DEFAULT_VERBOSITY))
1021AM_V_POXREF_0 = @echo " POXREF" $@;