offload: Move macro definitions before use.
[jackhill/guix/guix.git] / Makefile.am
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
49e6291a 2# Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
f2499672 3# Copyright © 2013 Andreas Enge <andreas@enge.fr>
af51c820 4#
233e7676 5# This file is part of GNU Guix.
af51c820 6#
233e7676 7# GNU Guix is free software; you can redistribute it and/or modify it
af51c820
LC
8# under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or (at
10# your option) any later version.
11#
233e7676 12# GNU Guix is distributed in the hope that it will be useful, but
af51c820
LC
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
233e7676 18# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
af51c820 19
c52a5bf0 20bin_SCRIPTS = \
e49951eb 21 scripts/guix
14a1c319 22
58867ae7
MW
23nodist_noinst_SCRIPTS = \
24 pre-inst-env \
25 test-env
26
d516736c
LC
27include gnu-system.am
28
af51c820 29MODULES = \
ddc29a78 30 guix/base32.scm \
c0cd1b3e 31 guix/records.scm \
72626a71 32 guix/hash.scm \
3476ded9 33 guix/pk-crypto.scm \
8b420f74 34 guix/pki.scm \
73fbb904 35 guix/utils.scm \
de1355f1 36 guix/download.scm \
9b5b5c17 37 guix/git-download.scm \
b860f382 38 guix/monads.scm \
cc4ecc2d 39 guix/profiles.scm \
0f41c26f
LC
40 guix/serialization.scm \
41 guix/nar.scm \
af51c820 42 guix/derivations.scm \
22189ed1 43 guix/gnu-maintenance.scm \
838d78e3 44 guix/licenses.scm \
208f7cd1 45 guix/build-system.scm \
c6bded8a 46 guix/build-system/cmake.scm \
208f7cd1 47 guix/build-system/gnu.scm \
08fd1ebe 48 guix/build-system/perl.scm \
40506d5d 49 guix/build-system/python.scm \
be13fbfa 50 guix/build-system/trivial.scm \
457dd86d 51 guix/ftp-client.scm \
3b8258c5 52 guix/http-client.scm \
0fdd3bea 53 guix/gnupg.scm \
af51c820 54 guix/store.scm \
073c34d7 55 guix/ui.scm \
62cab99c 56 guix/build/download.scm \
c6bded8a 57 guix/build/cmake-build-system.scm \
9b5b5c17 58 guix/build/git.scm \
af949e8e 59 guix/build/gnome.scm \
af51c820 60 guix/build/gnu-build-system.scm \
fe12c345 61 guix/build/gnu-dist.scm \
88840f02 62 guix/build/linux-initrd.scm \
08fd1ebe 63 guix/build/perl-build-system.scm \
40506d5d 64 guix/build/python-build-system.scm \
1273d44a 65 guix/build/utils.scm \
c8c88afa 66 guix/build/union.scm \
3dbeecd2 67 guix/build/pull.scm \
3309e3a1 68 guix/build/rpath.scm \
e3ce5d70 69 guix/packages.scm \
10226c05 70 guix/snix.scm \
de1355f1
LC
71 guix/scripts/download.scm \
72 guix/scripts/build.scm \
760c60d6 73 guix/scripts/archive.scm \
de1355f1
LC
74 guix/scripts/import.scm \
75 guix/scripts/package.scm \
76 guix/scripts/gc.scm \
77 guix/scripts/hash.scm \
78 guix/scripts/pull.scm \
79 guix/scripts/substitute-binary.scm \
526382ff 80 guix/scripts/authenticate.scm \
de1355f1 81 guix/scripts/refresh.scm \
523e4896 82 guix/scripts/system.scm \
e3ce5d70 83 guix.scm \
d516736c 84 $(GNU_SYSTEM_MODULES)
af51c820 85
49e6291a
LC
86if BUILD_DAEMON_OFFLOAD
87
88MODULES += \
89 guix/scripts/offload.scm
90
91endif BUILD_DAEMON_OFFLOAD
92
855a8ad7
LC
93# Because of the autoload hack in (guix build download), we must build it
94# first to avoid errors on systems where (gnutls) is unavailable.
95guix/scripts/download.go: guix/build/download.go
de1355f1 96guix/download.go: guix/build/download.go
c44899a2 97
1959fb04 98
00e219d1 99GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go
af51c820 100
800cdeef 101nobase_dist_guilemodule_DATA = $(MODULES)
1959fb04 102nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
800cdeef 103
1959fb04
LC
104# Do we need to provide our own non-broken (srfi srfi-37) module?
105if INSTALL_SRFI_37
106
107nobase_nodist_guilemodule_DATA += srfi/srfi-37.scm
108GOBJECTS += srfi/srfi-37.go
109
110srfi/srfi-37.scm: srfi/srfi-37.scm.in
111 $(MKDIR_P) srfi
112 cp "$<" "$@"
113
114endif INSTALL_SRFI_37
ac5aa288 115
70a9c720
LC
116# Handy way to remove the .go files without removing all the rest.
117clean-go:
118 -$(RM) -f $(GOBJECTS)
119
af51c820 120
30dd8310 121SCM_TESTS = \
ddc29a78 122 tests/base32.scm \
69927e78 123 tests/hash.scm \
3476ded9 124 tests/pk-crypto.scm \
8b420f74 125 tests/pki.scm \
af51c820
LC
126 tests/builders.scm \
127 tests/derivations.scm \
299112d3 128 tests/ui.scm \
c0cd1b3e 129 tests/records.scm \
e3ce5d70 130 tests/utils.scm \
b0e0d0e9 131 tests/build-utils.scm \
c8c88afa 132 tests/packages.scm \
10226c05 133 tests/snix.scm \
3259877d 134 tests/store.scm \
b860f382 135 tests/monads.scm \
53c63ee9 136 tests/nar.scm \
a2078770
LC
137 tests/union.scm \
138 tests/profiles.scm
30dd8310
LC
139
140SH_TESTS = \
0afdc485 141 tests/guix-build.sh \
37d19403 142 tests/guix-download.sh \
fe8ff028 143 tests/guix-gc.sh \
ccbce848 144 tests/guix-hash.sh \
0820098d 145 tests/guix-package.sh \
760c60d6 146 tests/guix-archive.sh \
0820098d 147 tests/guix-authenticate.sh
af51c820 148
a7a4e6a4
LC
149if BUILD_DAEMON
150
151SH_TESTS += tests/guix-register.sh
152
153endif BUILD_DAEMON
154
155
30dd8310
LC
156TESTS = $(SCM_TESTS) $(SH_TESTS)
157
97298ffa
LC
158TEST_EXTENSIONS = .scm .sh
159
352ec143
LC
160AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
161
69cfce50 162SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
97298ffa
LC
163AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
164
69cfce50 165SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
97298ffa 166AM_SH_LOG_FLAGS = -x -e
af51c820 167
3a33730a
LC
168# Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
169# could end up removing files from the store while they are being used by
170# other instances of the daemon.
171tests/guix-gc.log: \
172 $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
173 $(SCM_TESTS:%.scm=%.log)
174
175
ed795c06 176EXTRA_DIST = \
450ccdc3 177 HACKING \
b6dd891c 178 ROADMAP \
6b8875c8 179 TODO \
1722d680 180 .dir-locals.el \
f3211ef3 181 build-aux/hydra/gnu-system.scm \
59e6ae6c 182 build-aux/hydra/guix.scm \
56fbf262 183 build-aux/check-available-binaries.scm \
ac5aa288 184 build-aux/download.scm \
b592f711 185 build-aux/list-packages.scm \
668d48a6 186 build-aux/sync-descriptions.scm \
1959fb04 187 srfi/srfi-37.scm.in \
ed795c06
LC
188 srfi/srfi-64.scm \
189 srfi/srfi-64.upstream.scm \
d95c0113 190 tests/test.drv \
526382ff
LC
191 tests/signing-key.pub \
192 tests/signing-key.sec \
ed795c06 193 build-aux/config.rpath \
b49ffe2d 194 bootstrap \
ed795c06
LC
195 release.nix \
196 $(TESTS)
d7672884 197
49e6291a
LC
198if !BUILD_DAEMON_OFFLOAD
199
200EXTRA_DIST += \
201 guix/scripts/offload.scm
202
203endif !BUILD_DAEMON_OFFLOAD
204
205
30dd8310
LC
206CLEANFILES = \
207 $(GOBJECTS) \
9bff16b3 208 $(SCM_TESTS:tests/%.scm=%.log)
af51c820 209
dab5d51b
LC
210AM_V_GUILEC = $(AM_V_GUILEC_$(V))
211AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
212AM_V_GUILEC_0 = @echo " GUILEC" $@;
213
a69b7ad2
LC
214# XXX: Use the C locale for when Guile lacks
215# <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>.
af51c820 216.scm.go:
dab5d51b 217 $(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ; \
a69b7ad2 218 LC_ALL=C \
671d8f5e
LC
219 $(top_builddir)/pre-inst-env \
220 $(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
221 -Wformat -Wunbound-variable -Warity-mismatch \
222 --target="$(host)" \
af51c820
LC
223 -o "$@" "$<"
224
225SUFFIXES = .go
226
227# Make sure source files are installed first, so that the mtime of
228# installed compiled files is greater than that of installed source
229# files. See
230# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
231# for details.
232guix_install_go_files = install-nobase_nodist_guilemoduleDATA
233$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
f68b0893 234
a9424c08
LC
235SUBDIRS = po
236
237include doc.am
568717fd 238
c2033df4
LC
239if BUILD_DAEMON
240
241include daemon.am
242
243endif BUILD_DAEMON
244
f68b0893 245ACLOCAL_AMFLAGS = -I m4
e76bdf8b 246AM_DISTCHECK_CONFIGURE_FLAGS = \
d388c2c4 247 --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
aca54b39
LC
248 --with-nix-prefix="$(NIX_PREFIX)" \
249 --enable-daemon
0e993428 250
668d48a6 251dist-hook: sync-descriptions gen-ChangeLog assert-no-store-file-names
56fbf262 252distcheck-hook: assert-binaries-available
e793178a 253
668d48a6 254sync-descriptions:
0e993428 255 -$(top_builddir)/pre-inst-env $(GUILE) \
668d48a6 256 $(top_srcdir)/build-aux/sync-descriptions.scm
e793178a
LC
257
258gen-ChangeLog:
259 if test -d .git; then \
260 $(top_srcdir)/build-aux/gitlog-to-changelog \
261 > $(distdir)/cl-t; \
262 rm -f $(distdir)/ChangeLog; \
263 mv $(distdir)/cl-t $(distdir)/ChangeLog; \
264 fi
265
a463ffd9
LC
266# Make sure we're not shipping a file that embeds a local /nix/store file name.
267assert-no-store-file-names:
268 if grep -r --exclude=*.texi --exclude=*.info \
269 "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
270 then \
271 echo "error: store file names embedded in the distribution" >&2 ; \
272 exit 1 ; \
273 fi
274
56fbf262
LC
275# Make sure hydra.gnu.org has the important binaries.
276assert-binaries-available:
277 $(top_builddir)/pre-inst-env "$(GUILE)" \
278 "$(top_srcdir)/build-aux/check-available-binaries.scm"
279
70a9c720 280.PHONY: sync-descriptions gen-ChangeLog clean-go
56fbf262 281.PHONY: assert-no-store-file-names assert-binaries-available