distro: Add libsigsegv and GNU Awk.
[jackhill/guix/guix.git] / Makefile.am
CommitLineData
af51c820
LC
1# Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2# Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
3#
4# This file is part of Guix.
5#
6# Guix is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or (at
9# your option) any later version.
10#
11# Guix is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Guix. If not, see <http://www.gnu.org/licenses/>.
18
19MODULES = \
af51c820 20 guix/derivations.scm \
208f7cd1
LC
21 guix/build-system.scm \
22 guix/build-system/gnu.scm \
af51c820
LC
23 guix/http.scm \
24 guix/store.scm \
25 guix/utils.scm \
26 guix/build/gnu-build-system.scm \
27 guix/build/http.scm \
1273d44a 28 guix/build/utils.scm \
e3ce5d70
LC
29 guix/packages.scm \
30 guix.scm \
31 distro/base.scm
af51c820
LC
32
33GOBJECTS = $(MODULES:%.scm=%.go)
34
35nobase_dist_guilemodule_DATA = $(MODULES)
36nobase_nodist_guilemodule_DATA = $(GOBJECTS)
37
38TESTS = \
39 tests/builders.scm \
40 tests/derivations.scm \
e3ce5d70
LC
41 tests/utils.scm \
42 tests/packages.scm
af51c820
LC
43
44TESTS_ENVIRONMENT = \
45 NIXPKGS="$(NIXPKGS)" \
46 GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
47 $(GUILE) -L "$(top_srcdir)"
48
e3ce5d70 49EXTRA_DIST = $(TESTS)
af51c820
LC
50CLEANFILES = $(GOBJECTS) *.log
51
52.scm.go:
53 $(MKDIR_P) `dirname "$@"`
04a0b857 54 NIXPKGS="$(NIXPKGS)" \
af51c820
LC
55 GUILE_AUTO_COMPILE=0 \
56 GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
48e8333d
LC
57 $(GUILD) compile -L "$(top_srcdir)" \
58 -Wformat -Wunbound-variable -Warity-mismatch \
73d96596 59 --target="$(host)" \
af51c820
LC
60 -o "$@" "$<"
61
62SUFFIXES = .go
63
64# Make sure source files are installed first, so that the mtime of
65# installed compiled files is greater than that of installed source
66# files. See
67# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
68# for details.
69guix_install_go_files = install-nobase_nodist_guilemoduleDATA
70$(guix_install_go_files): install-nobase_dist_guilemoduleDATA