build: Add a comment above the sysvinit section.
[jackhill/guix/guix.git] / nix / local.mk
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
65d13e30 2# Copyright © 2012, 2013, 2014, 2015, 2016, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
e71ad29d 3# Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
ebbf9154 4# Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
c2033df4 5#
233e7676 6# This file is part of GNU Guix.
c2033df4 7#
233e7676 8# GNU Guix is free software; you can redistribute it and/or modify it
c2033df4
LC
9# under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 3 of the License, or (at
11# your option) any later version.
12#
233e7676 13# GNU Guix is distributed in the hope that it will be useful, but
c2033df4
LC
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
233e7676 19# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c2033df4
LC
20
21#
22# Integration of the `guix-daemon' code taken from upstream Nix.
23#
24
c0d2e7b1 25BUILT_SOURCES += %D%/libstore/schema.sql.hh
751164bc 26CLEANFILES += %D%/libstore/schema.sql.hh
c2033df4
LC
27
28noinst_LIBRARIES = libformat.a libutil.a libstore.a
29
2bb04905
LC
30# Use '-std=c++11' for 'std::shared_ptr', 'auto', lambdas, and more.
31AM_CXXFLAGS = -Wall -std=c++11
996ed6ac 32
c2033df4 33libformat_a_SOURCES = \
c0d2e7b1
ML
34 %D%/boost/format/free_funcs.cc \
35 %D%/boost/format/parsing.cc \
36 %D%/boost/format/format_implementation.cc
c2033df4
LC
37
38libformat_headers = \
c0d2e7b1
ML
39 %D%/boost/throw_exception.hpp \
40 %D%/boost/format.hpp \
41 %D%/boost/assert.hpp \
42 %D%/boost/format/macros_default.hpp \
43 %D%/boost/format/format_fwd.hpp \
44 %D%/boost/format/format_class.hpp \
45 %D%/boost/format/exceptions.hpp \
46 %D%/boost/format/group.hpp \
47 %D%/boost/format/feed_args.hpp \
48 %D%/boost/format/internals_fwd.hpp \
49 %D%/boost/format/internals.hpp
c2033df4
LC
50
51libformat_a_CPPFLAGS = \
52 -I$(top_srcdir)/nix
53
54libutil_a_SOURCES = \
c0d2e7b1
ML
55 %D%/libutil/archive.cc \
56 %D%/libutil/affinity.cc \
57 %D%/libutil/serialise.cc \
58 %D%/libutil/util.cc \
c0d2e7b1
ML
59 %D%/libutil/hash.cc \
60 %D%/libutil/gcrypt-hash.cc
c2033df4
LC
61
62libutil_headers = \
c0d2e7b1
ML
63 %D%/libutil/affinity.hh \
64 %D%/libutil/hash.hh \
65 %D%/libutil/serialise.hh \
c0d2e7b1
ML
66 %D%/libutil/util.hh \
67 %D%/libutil/archive.hh \
68 %D%/libutil/types.hh \
69 %D%/libutil/gcrypt-hash.hh \
70 %D%/libutil/md5.h \
71 %D%/libutil/sha1.h \
72 %D%/libutil/sha256.h \
73 %D%/libutil/sha512.h
c2033df4
LC
74
75libutil_a_CPPFLAGS = \
76 -I$(top_builddir)/nix \
c0d2e7b1 77 -I$(top_srcdir)/%D%/libutil \
c2033df4
LC
78 $(libformat_a_CPPFLAGS)
79
80libstore_a_SOURCES = \
c0d2e7b1
ML
81 %D%/libstore/gc.cc \
82 %D%/libstore/globals.cc \
83 %D%/libstore/misc.cc \
84 %D%/libstore/references.cc \
85 %D%/libstore/store-api.cc \
86 %D%/libstore/optimise-store.cc \
87 %D%/libstore/local-store.cc \
88 %D%/libstore/build.cc \
89 %D%/libstore/pathlocks.cc \
7bed5d91 90 %D%/libstore/derivations.cc \
94d92c77 91 %D%/libstore/builtins.cc \
7bed5d91 92 %D%/libstore/sqlite.cc
c2033df4
LC
93
94libstore_headers = \
c0d2e7b1
ML
95 %D%/libstore/references.hh \
96 %D%/libstore/pathlocks.hh \
97 %D%/libstore/globals.hh \
98 %D%/libstore/worker-protocol.hh \
99 %D%/libstore/derivations.hh \
100 %D%/libstore/misc.hh \
101 %D%/libstore/local-store.hh \
7bed5d91 102 %D%/libstore/sqlite.hh \
94d92c77 103 %D%/libstore/builtins.hh \
c0d2e7b1 104 %D%/libstore/store-api.hh
c2033df4
LC
105
106libstore_a_CPPFLAGS = \
107 $(libutil_a_CPPFLAGS) \
c0d2e7b1
ML
108 -I$(top_srcdir)/%D%/libstore \
109 -I$(top_builddir)/%D%/libstore \
c2033df4 110 -DNIX_STORE_DIR=\"$(storedir)\" \
f5768afa
LC
111 -DNIX_STATE_DIR=\"$(localstatedir)/guix\" \
112 -DNIX_LOG_DIR=\"$(localstatedir)/log/guix\" \
9dd674db 113 -DGUIX_CONFIGURATION_DIRECTORY=\"$(sysconfdir)/guix\" \
c2033df4 114 -DNIX_BIN_DIR=\"$(bindir)\" \
2bb04905 115 -DDEFAULT_CHROOT_DIRS="\"\""
c2033df4 116
06ea5c8f 117libstore_a_CXXFLAGS = $(AM_CXXFLAGS) \
c2033df4
LC
118 $(SQLITE3_CFLAGS) $(LIBGCRYPT_CFLAGS)
119
120bin_PROGRAMS = guix-daemon
121
122guix_daemon_SOURCES = \
c0d2e7b1
ML
123 %D%/nix-daemon/nix-daemon.cc \
124 %D%/nix-daemon/guix-daemon.cc
c2033df4
LC
125
126guix_daemon_CPPFLAGS = \
7887bcbf 127 -DLOCALEDIR=\"$(localedir)\" \
c2033df4 128 $(libutil_a_CPPFLAGS) \
c0d2e7b1 129 -I$(top_srcdir)/%D%/libstore
c2033df4
LC
130
131guix_daemon_LDADD = \
f997137d 132 libstore.a libutil.a libformat.a -lz \
c2033df4
LC
133 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
134
351782e2 135guix_daemon_headers = \
c0d2e7b1 136 %D%/nix-daemon/shared.hh
c2033df4 137
f997137d
LC
138if HAVE_LIBBZ2
139
140guix_daemon_LDADD += -lbz2
f997137d
LC
141
142endif HAVE_LIBBZ2
a7a4e6a4 143
c2033df4 144noinst_HEADERS = \
351782e2
LC
145 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
146 $(guix_daemon_headers)
c2033df4 147
3931c761 148%D%/libstore/schema.sql.hh: guix/store/schema.sql
e71ad29d 149 $(AM_V_GEN)$(GUILE) --no-auto-compile -c \
c2033df4
LC
150 "(use-modules (rnrs io ports)) \
151 (call-with-output-file \"$@\" \
152 (lambda (out) \
153 (call-with-input-file \"$^\" \
154 (lambda (in) \
155 (write (get-string-all in) out)))))"
156
332d7903 157# The '.service' files for systemd.
d2825c96 158systemdservicedir = $(libdir)/systemd/system
1a1faa78
TGR
159nodist_systemdservice_DATA = \
160 etc/gnu-store.mount \
161 etc/guix-daemon.service \
162 etc/guix-publish.service
163
164etc/%.mount: etc/%.mount.in \
165 $(top_builddir)/config.status
166 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
167 $(SED) -e 's|@''storedir''@|$(storedir)|' < \
168 "$<" > "$@.tmp"; \
169 mv "$@.tmp" "$@"
d2825c96 170
332d7903 171etc/guix-%.service: etc/guix-%.service.in \
d2825c96 172 $(top_builddir)/config.status
5a5fc61f 173 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
613d0895 174 $(SED) -e 's|@''localstatedir''@|$(localstatedir)|' < \
5a5fc61f 175 "$<" > "$@.tmp"; \
d2825c96
LC
176 mv "$@.tmp" "$@"
177
9927e5b1 178# The service script for sysvinit.
73fbe041
DM
179sysvinitservicedir = $(sysconfdir)/init.d
180nodist_sysvinitservice_DATA = etc/init.d/guix-daemon
181
182etc/init.d/guix-daemon: etc/init.d/guix-daemon.in \
183 $(top_builddir)/config.status
184 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
185 $(SED) -e 's|@''localstatedir''@|$(localstatedir)|' < \
186 "$<" > "$@.tmp"; \
187 mv "$@.tmp" "$@"
188
332d7903 189# The '.conf' jobs for Upstart.
ad227484 190upstartjobdir = $(libdir)/upstart/system
332d7903 191nodist_upstartjob_DATA = etc/guix-daemon.conf etc/guix-publish.conf
ad227484 192
332d7903 193etc/guix-%.conf: etc/guix-%.conf.in \
ad227484 194 $(top_builddir)/config.status
5a5fc61f 195 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
613d0895 196 $(SED) -e 's|@''localstatedir''@|$(localstatedir)|' < \
5a5fc61f 197 "$<" > "$@.tmp"; \
ad227484
MDRS
198 mv "$@.tmp" "$@"
199
b20644ed
LC
200CLEANFILES += \
201 $(nodist_systemdservice_DATA) \
73fbe041
DM
202 $(nodist_upstartjob_DATA) \
203 $(nodist_sysvinitservice_DATA)
b20644ed 204
c2033df4 205EXTRA_DIST += \
c0d2e7b1
ML
206 %D%/AUTHORS \
207 %D%/COPYING \
fa54f44b
LC
208 etc/guix-daemon.service.in \
209 etc/guix-daemon.conf.in \
210 etc/guix-publish.service.in \
73fbe041
DM
211 etc/guix-publish.conf.in \
212 etc/init.d/guix-daemon.in
d23077dc 213
bb251307
LC
214if CAN_RUN_TESTS
215
d23077dc 216AM_TESTS_ENVIRONMENT += \
69cfce50 217 top_builddir="$(abs_top_builddir)"
d23077dc
LC
218
219TESTS += \
220 tests/guix-daemon.sh
221
bb251307
LC
222endif CAN_RUN_TESTS
223
d23077dc 224clean-local:
03fa2758
LC
225 -if test -d "$(GUIX_TEST_ROOT)"; then \
226 find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
227 fi
69cfce50 228 -rm -rf "$(GUIX_TEST_ROOT)"