Makefile.am 34 KB

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