tests: Set 'SHELL' for 'guix environment'.
[guix.git] / Makefile.am
blob67d483bfb09dae57555ba70c21317c871dfbf532
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3 # Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 # Copyright © 2015 Alex Kost <alezost@gmail.com>
6 # This file is part of GNU Guix.
8 # GNU Guix is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or (at
11 # your option) any later version.
13 # GNU Guix is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
21 bin_SCRIPTS =                                   \
22   scripts/guix
24 nodist_noinst_SCRIPTS =                         \
25   pre-inst-env                                  \
26   test-env
28 include gnu-system.am
30 MODULES =                                       \
31   guix/base32.scm                               \
32   guix/base64.scm                               \
33   guix/cpio.scm                                 \
34   guix/records.scm                              \
35   guix/gcrypt.scm                               \
36   guix/hash.scm                                 \
37   guix/pk-crypto.scm                            \
38   guix/pki.scm                                  \
39   guix/utils.scm                                \
40   guix/sets.scm                                 \
41   guix/download.scm                             \
42   guix/git-download.scm                         \
43   guix/monads.scm                               \
44   guix/monad-repl.scm                           \
45   guix/gexp.scm                                 \
46   guix/profiles.scm                             \
47   guix/serialization.scm                        \
48   guix/nar.scm                                  \
49   guix/derivations.scm                          \
50   guix/gnu-maintenance.scm                      \
51   guix/upstream.scm                             \
52   guix/licenses.scm                             \
53   guix/build-system.scm                         \
54   guix/build-system/cmake.scm                   \
55   guix/build-system/emacs.scm                   \
56   guix/build-system/glib-or-gtk.scm             \
57   guix/build-system/gnu.scm                     \
58   guix/build-system/haskell.scm                 \
59   guix/build-system/perl.scm                    \
60   guix/build-system/python.scm                  \
61   guix/build-system/waf.scm                     \
62   guix/build-system/r.scm                       \
63   guix/build-system/ruby.scm                    \
64   guix/build-system/trivial.scm                 \
65   guix/ftp-client.scm                           \
66   guix/http-client.scm                          \
67   guix/gnupg.scm                                \
68   guix/elf.scm                                  \
69   guix/store.scm                                \
70   guix/cvs-download.scm                         \
71   guix/svn-download.scm                         \
72   guix/ui.scm                                   \
73   guix/build/download.scm                       \
74   guix/build/cmake-build-system.scm             \
75   guix/build/emacs-build-system.scm             \
76   guix/build/git.scm                            \
77   guix/build/glib-or-gtk-build-system.scm       \
78   guix/build/gnu-build-system.scm               \
79   guix/build/gnu-dist.scm                       \
80   guix/build/perl-build-system.scm              \
81   guix/build/python-build-system.scm            \
82   guix/build/r-build-system.scm                 \
83   guix/build/ruby-build-system.scm              \
84   guix/build/waf-build-system.scm               \
85   guix/build/haskell-build-system.scm           \
86   guix/build/store-copy.scm                     \
87   guix/build/utils.scm                          \
88   guix/build/union.scm                          \
89   guix/build/profiles.scm                       \
90   guix/build/pull.scm                           \
91   guix/build/rpath.scm                          \
92   guix/build/cvs.scm                            \
93   guix/build/svn.scm                            \
94   guix/build/gremlin.scm                        \
95   guix/build/emacs-utils.scm                    \
96   guix/build/graft.scm                          \
97   guix/search-paths.scm                         \
98   guix/packages.scm                             \
99   guix/import/utils.scm                         \
100   guix/import/gnu.scm                           \
101   guix/import/snix.scm                          \
102   guix/import/cabal.scm                         \
103   guix/import/cran.scm                          \
104   guix/import/hackage.scm                       \
105   guix/import/elpa.scm                          \
106   guix/scripts.scm                              \
107   guix/scripts/download.scm                     \
108   guix/scripts/build.scm                        \
109   guix/scripts/archive.scm                      \
110   guix/scripts/import.scm                       \
111   guix/scripts/package.scm                      \
112   guix/scripts/gc.scm                           \
113   guix/scripts/hash.scm                         \
114   guix/scripts/pull.scm                         \
115   guix/scripts/substitute.scm                   \
116   guix/scripts/authenticate.scm                 \
117   guix/scripts/refresh.scm                      \
118   guix/scripts/system.scm                       \
119   guix/scripts/lint.scm                         \
120   guix/scripts/challenge.scm                    \
121   guix/scripts/import/cran.scm                  \
122   guix/scripts/import/gnu.scm                   \
123   guix/scripts/import/nix.scm                   \
124   guix/scripts/import/hackage.scm               \
125   guix/scripts/import/elpa.scm                  \
126   guix/scripts/environment.scm                  \
127   guix/scripts/publish.scm                      \
128   guix/scripts/edit.scm                         \
129   guix/scripts/size.scm                         \
130   guix/scripts/graph.scm                        \
131   guix/scripts/container.scm                    \
132   guix/scripts/container/exec.scm               \
133   guix.scm                                      \
134   $(GNU_SYSTEM_MODULES)
136 if BUILD_SYSCALLS_MODULE
138 MODULES +=                                      \
139   guix/build/syscalls.scm
141 endif
143 if BUILD_DAEMON_OFFLOAD
145 MODULES +=                                      \
146   guix/scripts/offload.scm
148 endif BUILD_DAEMON_OFFLOAD
150 # Internal module with test suite support.
151 dist_noinst_DATA = guix/tests.scm
153 # Because of the autoload hack in (guix build download), we must build it
154 # first to avoid errors on systems where (gnutls) is unavailable.
155 guix/scripts/download.go: guix/build/download.go
156 guix/download.go: guix/build/download.go
158 # Linux-Libre configurations.
159 KCONFIGS =                                      \
160   gnu/packages/linux-libre-i686.conf            \
161   gnu/packages/linux-libre-x86_64.conf
163 # Templates, examples.
164 EXAMPLES =                                      \
165   gnu/system/examples/bare-bones.tmpl           \
166   gnu/system/examples/desktop.tmpl
168 GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go guix/tests.go
170 nobase_dist_guilemodule_DATA =                  \
171   $(MODULES) $(KCONFIGS) $(EXAMPLES)            \
172   $(MISC_DISTRO_FILES)
173 nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
175 # Do we need to provide our own non-broken (srfi srfi-37) module?
176 if INSTALL_SRFI_37
178 nobase_nodist_guilemodule_DATA += srfi/srfi-37.scm
179 GOBJECTS += srfi/srfi-37.go
181 srfi/srfi-37.scm: srfi/srfi-37.scm.in
182         $(MKDIR_P) srfi
183         cp "$<" "$@"
185 endif INSTALL_SRFI_37
187 # Handy way to remove the .go files without removing all the rest.
188 clean-go:
189         -$(RM) -f $(GOBJECTS)
192 SCM_TESTS =                                     \
193   tests/base32.scm                              \
194   tests/base64.scm                              \
195   tests/cpio.scm                                \
196   tests/hash.scm                                \
197   tests/pk-crypto.scm                           \
198   tests/pki.scm                                 \
199   tests/sets.scm                                \
200   tests/substitute.scm                          \
201   tests/builders.scm                            \
202   tests/derivations.scm                         \
203   tests/ui.scm                                  \
204   tests/records.scm                             \
205   tests/utils.scm                               \
206   tests/build-utils.scm                         \
207   tests/packages.scm                            \
208   tests/snix.scm                                \
209   tests/hackage.scm                             \
210   tests/cran.scm                                \
211   tests/elpa.scm                                \
212   tests/store.scm                               \
213   tests/monads.scm                              \
214   tests/gexp.scm                                \
215   tests/nar.scm                                 \
216   tests/union.scm                               \
217   tests/profiles.scm                            \
218   tests/syscalls.scm                            \
219   tests/gremlin.scm                             \
220   tests/lint.scm                                \
221   tests/publish.scm                             \
222   tests/scripts.scm                             \
223   tests/size.scm                                \
224   tests/graph.scm                               \
225   tests/challenge.scm                           \
226   tests/file-systems.scm                        \
227   tests/services.scm                            \
228   tests/containers.scm
230 if HAVE_GUILE_JSON
232 MODULES +=                                      \
233   guix/import/json.scm                          \
234   guix/import/pypi.scm                          \
235   guix/scripts/import/pypi.scm                  \
236   guix/import/cpan.scm                          \
237   guix/scripts/import/gem.scm                   \
238   guix/import/gem.scm
240 SCM_TESTS +=                                    \
241   tests/pypi.scm                                \
242   tests/cpan.scm                                \
243   tests/gem.scm
245 endif
247 SH_TESTS =                                      \
248   tests/guix-build.sh                           \
249   tests/guix-download.sh                        \
250   tests/guix-gc.sh                              \
251   tests/guix-hash.sh                            \
252   tests/guix-package.sh                         \
253   tests/guix-package-net.sh                     \
254   tests/guix-system.sh                          \
255   tests/guix-archive.sh                         \
256   tests/guix-authenticate.sh                    \
257   tests/guix-environment.sh                     \
258   tests/guix-environment-container.sh           \
259   tests/guix-graph.sh                           \
260   tests/guix-lint.sh
262 if BUILD_DAEMON
264 SH_TESTS += tests/guix-register.sh
266 endif BUILD_DAEMON
269 TESTS = $(SCM_TESTS) $(SH_TESTS)
271 TEST_EXTENSIONS = .scm .sh
273 AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
275 SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
276 AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
278 SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
279 AM_SH_LOG_FLAGS = -x -e
281 # Make sure `tests/guix-gc.sh' runs last, after all the others.  Otherwise it
282 # could end up removing files from the store while they are being used by
283 # other instances of the daemon.
284 tests/guix-gc.log:                                                      \
285   $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS)))     \
286   $(SCM_TESTS:%.scm=%.log)
288 # Public key used to sign substitutes from hydra.gnu.org.
289 dist_pkgdata_DATA = hydra.gnu.org.pub
291 # Bash completion file.
292 dist_bashcompletion_DATA = etc/completion/bash/guix
294 EXTRA_DIST =                                            \
295   HACKING                                               \
296   ROADMAP                                               \
297   TODO                                                  \
298   .dir-locals.el                                        \
299   build-aux/build-self.scm                              \
300   build-aux/hydra/gnu-system.scm                        \
301   build-aux/hydra/demo-os.scm                           \
302   build-aux/hydra/guix.scm                              \
303   build-aux/check-available-binaries.scm                \
304   build-aux/check-final-inputs-self-contained.scm       \
305   build-aux/download.scm                                \
306   build-aux/make-binary-tarball.scm                     \
307   build-aux/generate-authors.scm                        \
308   srfi/srfi-37.scm.in                                   \
309   srfi/srfi-64.scm                                      \
310   srfi/srfi-64.upstream.scm                             \
311   tests/test.drv                                        \
312   tests/signing-key.pub                                 \
313   tests/signing-key.sec                                 \
314   build-aux/config.rpath                                \
315   bootstrap                                             \
316   release.nix                                           \
317   $(TESTS)
319 if !BUILD_DAEMON_OFFLOAD
321 EXTRA_DIST +=                                   \
322   guix/scripts/offload.scm
324 endif !BUILD_DAEMON_OFFLOAD
326 if !BUILD_SYSCALLS_MODULE
328 EXTRA_DIST +=                                   \
329   guix/build/syscalls.scm
331 endif !BUILD_SYSCALLS_MODULE
334 CLEANFILES =                                    \
335   $(GOBJECTS)                                   \
336   $(SCM_TESTS:tests/%.scm=%.log)
338 AM_V_GUILEC = $(AM_V_GUILEC_$(V))
339 AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
340 AM_V_GUILEC_0 = @echo "  GUILEC" $@;
342 # Flags passed to 'guild compile'.
343 GUILD_COMPILE_FLAGS =                           \
344   -Wformat -Wunbound-variable -Warity-mismatch
346 # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling.  Otherwise, if
347 # $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
348 # there that are newer than the local .scm files (for instance because the
349 # user ran 'make install' recently).  When that happens, we end up loading
350 # those previously-installed .go files, which may be stale, thereby breaking
351 # the whole thing.
353 # XXX: Use the C locale for when Guile lacks
354 # <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>.
355 .scm.go:
356         $(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ;                       \
357         unset GUILE_LOAD_COMPILED_PATH ;                                \
358         LC_ALL=C                                                        \
359         $(top_builddir)/pre-inst-env                                    \
360         $(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)"        \
361           $(GUILD_COMPILE_FLAGS) --target="$(host)"                     \
362           -o "$@" "$<"
364 SUFFIXES = .go
366 # Make sure source files are installed first, so that the mtime of
367 # installed compiled files is greater than that of installed source
368 # files.  See
369 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
370 # for details.
371 guix_install_go_files = install-nobase_nodist_guilemoduleDATA
372 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
374 # The above trick doesn't work for 'config.go' because both 'config.scm' and
375 # 'config.go' are listed in $(nobase_nodist_guilemodule_DATA).  Thus, give it
376 # special treatment.
377 install-data-hook: set-bootstrap-executable-permissions
378         touch "$(DESTDIR)$(guilemoduledir)/guix/config.go"
381 SUBDIRS = po/guix po/packages
382 BUILT_SOURCES =
384 include doc.am
386 if BUILD_DAEMON
388 include daemon.am
390 endif BUILD_DAEMON
392 ACLOCAL_AMFLAGS = -I m4
393 AM_DISTCHECK_CONFIGURE_FLAGS =                  \
394   --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
395   --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
396   --with-nix-prefix="$(NIX_PREFIX)"             \
397   --enable-daemon
399 dist_emacsui_DATA = emacs/guix-main.scm
400 nodist_emacsui_DATA = emacs/guix-helper.scm
401 include emacs.am
403 # The self-contained tarball.
404 guix-binary.%.tar.xz:
405         -GUIX_PACKAGE_PATH= \
406         $(top_builddir)/pre-inst-env "$(GUILE)"                 \
407           "$(top_srcdir)/build-aux/make-binary-tarball.scm" "$*" "$@"
410 dist-hook: sync-descriptions gen-ChangeLog gen-AUTHORS
411 dist-hook: assert-no-store-file-names
413 distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
415 sync-descriptions:
416         -GUIX_PACKAGE_PATH= \
417          $(top_builddir)/pre-inst-env guix lint --checkers=gnu-description
419 gen-ChangeLog:
420         if test -d .git; then                           \
421           $(top_srcdir)/build-aux/gitlog-to-changelog   \
422             > $(distdir)/cl-t;                          \
423           rm -f $(distdir)/ChangeLog;                   \
424           mv $(distdir)/cl-t $(distdir)/ChangeLog;      \
425         fi
427 gen-AUTHORS:
428         if test -d .git; then                                   \
429           rm -f "$(distdir)/AUTHORS";                           \
430           $(top_builddir)/pre-inst-env "$(GUILE)"               \
431             "$(top_srcdir)/build-aux/generate-authors.scm"      \
432             "$(top_srcdir)" "$(distdir)/AUTHORS";               \
433         fi
435 # Make sure we're not shipping a file that embeds a local /gnu/store file name.
436 assert-no-store-file-names:
437         if grep -r --exclude=*.texi --exclude=*.info                            \
438              "$(storedir)/[a-z0-9]{32}-" $(distdir) ;                           \
439         then                                                                    \
440           echo "error: store file names embedded in the distribution" >&2 ;     \
441           exit 1 ;                                                              \
442         fi
444 # Make sure hydra.gnu.org has the important binaries.
445 assert-binaries-available:
446         $(top_builddir)/pre-inst-env "$(GUILE)"                         \
447           "$(top_srcdir)/build-aux/check-available-binaries.scm"
449 # Make sure the final inputs don't refer to bootstrap tools.
450 assert-final-inputs-self-contained:
451         $(top_builddir)/pre-inst-env "$(GUILE)"                         \
452           "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
454 .PHONY: sync-descriptions gen-ChangeLog gen-AUTHORS clean-go
455 .PHONY: assert-no-store-file-names assert-binaries-available
456 .PHONY: assert-final-inputs-self-contained