Fix name of Alexandru.
[jackhill/guix/guix.git] / daemon.am
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
3 #
4 # This file is part of GNU Guix.
5 #
6 # GNU 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 # GNU 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 GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 #
20 # Integration of the `guix-daemon' code taken from upstream Nix.
21 #
22
23 BUILT_SOURCES = nix/libstore/schema.sql.hh
24 CLEANFILES += $(BUILT_SOURCES)
25
26 noinst_LIBRARIES = libformat.a libutil.a libstore.a
27
28 libformat_a_SOURCES = \
29 nix/boost/format/free_funcs.cc \
30 nix/boost/format/parsing.cc \
31 nix/boost/format/format_implementation.cc
32
33 libformat_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
52 libformat_a_CPPFLAGS = \
53 -I$(top_srcdir)/nix
54
55 libutil_a_SOURCES = \
56 nix/libutil/archive.cc \
57 nix/libutil/serialise.cc \
58 nix/libutil/util.cc \
59 nix/libutil/xml-writer.cc \
60 nix/libutil/hash.cc \
61 nix/libutil/gcrypt-hash.cc
62
63 libutil_headers = \
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
75 libutil_a_CPPFLAGS = \
76 -I$(top_builddir)/nix \
77 -I$(top_srcdir)/nix/libutil \
78 $(libformat_a_CPPFLAGS)
79
80 libstore_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
93 libstore_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
105 libstore_a_CPPFLAGS = \
106 $(libutil_a_CPPFLAGS) \
107 -I$(top_srcdir)/nix/libstore \
108 -I$(top_builddir)/nix/libstore \
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)\" \
116 -DOPENSSL_PATH="\"openssl\""
117
118 libstore_a_CXXFLAGS = \
119 $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS)
120
121 bin_PROGRAMS = guix-daemon
122
123 guix_daemon_SOURCES = \
124 nix/nix-daemon/nix-daemon.cc \
125 nix/nix-daemon/guix-daemon.cc
126
127 guix_daemon_CPPFLAGS = \
128 $(libutil_a_CPPFLAGS) \
129 -I$(top_srcdir)/nix/libstore
130
131 guix_daemon_LDADD = \
132 libstore.a libutil.a libformat.a -lbz2 \
133 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
134
135 guix_daemon_headers = \
136 nix/nix-daemon/shared.hh
137
138 libexec_PROGRAMS = nix-setuid-helper
139 nix_setuid_helper_SOURCES = \
140 nix/nix-setuid-helper/nix-setuid-helper.cc
141
142 nix_setuid_helper_CPPFLAGS = \
143 $(libutil_a_CPPFLAGS)
144
145 nix_setuid_helper_LDADD = \
146 libutil.a libformat.a
147
148 noinst_HEADERS = \
149 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
150 $(guix_daemon_headers)
151
152 nix/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
161 nodist_pkglibexec_SCRIPTS = \
162 nix/scripts/list-runtime-roots \
163 nix/scripts/substitute-binary
164
165 EXTRA_DIST += \
166 nix/sync-with-upstream \
167 nix/libstore/schema.sql \
168 nix/AUTHORS \
169 nix/COPYING
170
171 AM_TESTS_ENVIRONMENT += \
172 top_builddir="$(abs_top_builddir)"
173
174 TESTS += \
175 tests/guix-daemon.sh
176
177 clean-local:
178 -if test -d "$(GUIX_TEST_ROOT)"; then \
179 find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
180 fi
181 -rm -rf "$(GUIX_TEST_ROOT)"