2012-06-13 18:01:25 +02:00
|
|
|
# Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of Guix.
|
|
|
|
#
|
|
|
|
# Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# Guix is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-07-01 00:56:24 +02:00
|
|
|
bin_SCRIPTS = guix-build
|
|
|
|
|
2012-06-13 18:01:25 +02:00
|
|
|
MODULES = \
|
2012-07-01 15:10:50 +02:00
|
|
|
guix/utils.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
guix/derivations.scm \
|
2012-06-27 23:58:07 +02:00
|
|
|
guix/build-system.scm \
|
|
|
|
guix/build-system/gnu.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
guix/http.scm \
|
|
|
|
guix/store.scm \
|
|
|
|
guix/build/gnu-build-system.scm \
|
|
|
|
guix/build/http.scm \
|
2012-06-15 10:03:08 +02:00
|
|
|
guix/build/utils.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
guix/packages.scm \
|
|
|
|
guix.scm \
|
2012-06-30 16:37:19 +02:00
|
|
|
distro.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
distro/base.scm
|
2012-06-13 18:01:25 +02:00
|
|
|
|
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go)
|
|
|
|
|
2012-07-06 00:55:07 +02:00
|
|
|
nobase_dist_guilemodule_DATA = \
|
|
|
|
$(MODULES) \
|
|
|
|
distro/guile-1.8-cpp-4.5.patch
|
|
|
|
|
2012-06-13 18:01:25 +02:00
|
|
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS)
|
|
|
|
|
|
|
|
TESTS = \
|
|
|
|
tests/builders.scm \
|
|
|
|
tests/derivations.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
tests/utils.scm \
|
2012-07-01 17:32:03 +02:00
|
|
|
tests/build-utils.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
tests/packages.scm
|
2012-06-13 18:01:25 +02:00
|
|
|
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
|
|
NIXPKGS="$(NIXPKGS)" \
|
|
|
|
GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
|
2012-07-02 01:03:37 +02:00
|
|
|
$(GUILE) --no-auto-compile -L "$(top_srcdir)"
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2012-06-29 22:22:48 +02:00
|
|
|
EXTRA_DIST = build-aux/config.rpath $(TESTS)
|
2012-07-06 00:55:07 +02:00
|
|
|
|
2012-06-13 18:01:25 +02:00
|
|
|
CLEANFILES = $(GOBJECTS) *.log
|
|
|
|
|
|
|
|
.scm.go:
|
|
|
|
$(MKDIR_P) `dirname "$@"`
|
2012-06-28 00:53:13 +02:00
|
|
|
NIXPKGS="$(NIXPKGS)" \
|
2012-06-13 18:01:25 +02:00
|
|
|
GUILE_AUTO_COMPILE=0 \
|
|
|
|
GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
|
2012-06-15 10:04:38 +02:00
|
|
|
$(GUILD) compile -L "$(top_srcdir)" \
|
|
|
|
-Wformat -Wunbound-variable -Warity-mismatch \
|
2012-06-15 10:11:29 +02:00
|
|
|
--target="$(host)" \
|
2012-06-13 18:01:25 +02:00
|
|
|
-o "$@" "$<"
|
|
|
|
|
|
|
|
SUFFIXES = .go
|
|
|
|
|
|
|
|
# Make sure source files are installed first, so that the mtime of
|
|
|
|
# installed compiled files is greater than that of installed source
|
|
|
|
# files. See
|
|
|
|
# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
|
|
|
|
# for details.
|
|
|
|
guix_install_go_files = install-nobase_nodist_guilemoduleDATA
|
|
|
|
$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
|
2012-06-29 22:22:48 +02:00
|
|
|
|
|
|
|
SUBDIRS = po
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|