gnu: Add GNU Rush.
[jackhill/guix/guix.git] / daemon.am
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
f4b60f5f 2# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
c2033df4 3#
233e7676 4# This file is part of GNU Guix.
c2033df4 5#
233e7676 6# GNU Guix is free software; you can redistribute it and/or modify it
c2033df4
LC
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#
233e7676 11# GNU Guix is distributed in the hope that it will be useful, but
c2033df4
LC
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
233e7676 17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c2033df4
LC
18
19#
20# Integration of the `guix-daemon' code taken from upstream Nix.
21#
22
23BUILT_SOURCES = nix/libstore/schema.sql.hh
24CLEANFILES += $(BUILT_SOURCES)
25
26noinst_LIBRARIES = libformat.a libutil.a libstore.a
27
28libformat_a_SOURCES = \
29 nix/boost/format/free_funcs.cc \
30 nix/boost/format/parsing.cc \
31 nix/boost/format/format_implementation.cc
32
33libformat_headers = \
34 nix/boost/weak_ptr.hpp \
35 nix/boost/throw_exception.hpp \
36 nix/boost/checked_delete.hpp \
37 nix/boost/shared_ptr.hpp \
38 nix/boost/format.hpp \
39 nix/boost/assert.hpp \
40 nix/boost/format/macros_default.hpp \
41 nix/boost/format/format_fwd.hpp \
42 nix/boost/format/format_class.hpp \
43 nix/boost/format/exceptions.hpp \
44 nix/boost/format/group.hpp \
45 nix/boost/format/feed_args.hpp \
46 nix/boost/format/internals_fwd.hpp \
47 nix/boost/format/internals.hpp \
48 nix/boost/detail/workaround.hpp \
49 nix/boost/detail/shared_count.hpp \
50 nix/boost/enable_shared_from_this.hpp
51
52libformat_a_CPPFLAGS = \
53 -I$(top_srcdir)/nix
54
55libutil_a_SOURCES = \
56 nix/libutil/archive.cc \
57 nix/libutil/serialise.cc \
c2033df4
LC
58 nix/libutil/util.cc \
59 nix/libutil/xml-writer.cc \
60 nix/libutil/hash.cc \
61 nix/libutil/gcrypt-hash.cc
62
63libutil_headers = \
c2033df4
LC
64 nix/libutil/hash.hh \
65 nix/libutil/serialise.hh \
66 nix/libutil/xml-writer.hh \
67 nix/libutil/util.hh \
68 nix/libutil/archive.hh \
69 nix/libutil/types.hh \
70 nix/libutil/gcrypt-hash.hh \
71 nix/libutil/md5.h \
72 nix/libutil/sha1.h \
73 nix/libutil/sha256.h
74
75libutil_a_CPPFLAGS = \
76 -I$(top_builddir)/nix \
77 -I$(top_srcdir)/nix/libutil \
78 $(libformat_a_CPPFLAGS)
79
80libstore_a_SOURCES = \
81 nix/libstore/gc.cc \
82 nix/libstore/globals.cc \
83 nix/libstore/misc.cc \
84 nix/libstore/references.cc \
85 nix/libstore/store-api.cc \
86 nix/libstore/optimise-store.cc \
87 nix/libstore/local-store.cc \
88 nix/libstore/remote-store.cc \
89 nix/libstore/build.cc \
90 nix/libstore/pathlocks.cc \
91 nix/libstore/derivations.cc
92
93libstore_headers = \
94 nix/libstore/references.hh \
95 nix/libstore/pathlocks.hh \
96 nix/libstore/globals.hh \
97 nix/libstore/schema.sql.hh \
98 nix/libstore/worker-protocol.hh \
99 nix/libstore/remote-store.hh \
100 nix/libstore/derivations.hh \
101 nix/libstore/misc.hh \
102 nix/libstore/local-store.hh \
103 nix/libstore/store-api.hh
104
105libstore_a_CPPFLAGS = \
106 $(libutil_a_CPPFLAGS) \
107 -I$(top_srcdir)/nix/libstore \
0442d345 108 -I$(top_builddir)/nix/libstore \
c2033df4
LC
109 -DNIX_STORE_DIR=\"$(storedir)\" \
110 -DNIX_DATA_DIR=\"$(datadir)\" \
111 -DNIX_STATE_DIR=\"$(localstatedir)/nix\" \
112 -DNIX_LOG_DIR=\"$(localstatedir)/log/nix\" \
113 -DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \
114 -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
115 -DNIX_BIN_DIR=\"$(bindir)\" \
a9128eac 116 -DOPENSSL_PATH="\"openssl\""
c2033df4 117
52e5910c 118libstore_a_CXXFLAGS = \
c2033df4
LC
119 $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS)
120
121bin_PROGRAMS = guix-daemon
122
123guix_daemon_SOURCES = \
124 nix/nix-daemon/nix-daemon.cc \
125 nix/nix-daemon/guix-daemon.cc
126
127guix_daemon_CPPFLAGS = \
128 $(libutil_a_CPPFLAGS) \
129 -I$(top_srcdir)/nix/libstore
130
131guix_daemon_LDADD = \
132 libstore.a libutil.a libformat.a -lbz2 \
133 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
134
351782e2
LC
135guix_daemon_headers = \
136 nix/nix-daemon/shared.hh
c2033df4 137
e1b7096a
LC
138libexec_PROGRAMS = nix-setuid-helper
139nix_setuid_helper_SOURCES = \
140 nix/nix-setuid-helper/nix-setuid-helper.cc
141
142nix_setuid_helper_CPPFLAGS = \
143 $(libutil_a_CPPFLAGS)
144
145nix_setuid_helper_LDADD = \
146 libutil.a libformat.a
147
c2033df4 148noinst_HEADERS = \
351782e2
LC
149 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
150 $(guix_daemon_headers)
c2033df4
LC
151
152nix/libstore/schema.sql.hh: nix/libstore/schema.sql
153 $(GUILE) --no-auto-compile -c \
154 "(use-modules (rnrs io ports)) \
155 (call-with-output-file \"$@\" \
156 (lambda (out) \
157 (call-with-input-file \"$^\" \
158 (lambda (in) \
159 (write (get-string-all in) out)))))"
160
f5c82e15 161nodist_pkglibexec_SCRIPTS = \
f65cf81a
LC
162 nix/scripts/list-runtime-roots \
163 nix/scripts/substitute-binary
f5c82e15 164
c2033df4 165EXTRA_DIST += \
b49ffe2d 166 nix/sync-with-upstream \
c2033df4
LC
167 nix/libstore/schema.sql \
168 nix/AUTHORS \
169 nix/COPYING
d23077dc 170
d23077dc 171AM_TESTS_ENVIRONMENT += \
69cfce50 172 top_builddir="$(abs_top_builddir)"
d23077dc
LC
173
174TESTS += \
175 tests/guix-daemon.sh
176
177clean-local:
03fa2758
LC
178 -if test -d "$(GUIX_TEST_ROOT)"; then \
179 find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
180 fi
69cfce50 181 -rm -rf "$(GUIX_TEST_ROOT)"