build: Provide the right include path when building modules.
[guix.git] / Makefile.am
blob0a51552054cd000eda6ef46f8cb7071a5da45cc5
1 # Guix --- Nix package management from Guile.         -*- coding: utf-8 -*-
2 # Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
4 # This file is part of Guix.
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.
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.
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/>.
19 MODULES =                                       \
20   guix/derivations.scm                          \
21   guix/gnu-build-system.scm                     \
22   guix/http.scm                                 \
23   guix/store.scm                                \
24   guix/utils.scm                                \
25   guix/build/gnu-build-system.scm               \
26   guix/build/http.scm                           \
27   guix/build/utils.scm                          \
28   guix.scm
30 GOBJECTS = $(MODULES:%.scm=%.go)
32 nobase_dist_guilemodule_DATA = $(MODULES)
33 nobase_nodist_guilemodule_DATA = $(GOBJECTS)
35 TESTS =                                         \
36   tests/builders.scm                            \
37   tests/derivations.scm                         \
38   tests/utils.scm
40 TESTS_ENVIRONMENT =                                                     \
41   NIXPKGS="$(NIXPKGS)"                                                  \
42   GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
43   $(GUILE) -L "$(top_srcdir)"
45 CLEANFILES = $(GOBJECTS) *.log
47 .scm.go:
48         $(MKDIR_P) `dirname "$@"`
49         GUILE_AUTO_COMPILE=0                                                    \
50         GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH"   \
51         $(GUILD) compile -L "$(top_srcdir)"                                     \
52           -Wformat -Wunbound-variable -Warity-mismatch                          \
53           -o "$@" "$<"
55 SUFFIXES = .go
57 # Make sure source files are installed first, so that the mtime of
58 # installed compiled files is greater than that of installed source
59 # files.  See
60 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
61 # for details.
62 guix_install_go_files = install-nobase_nodist_guilemoduleDATA
63 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA