2014-02-01 13:23:14 +02:00
|
|
|
libraries += libstore
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2013-11-24 01:53:41 +02:00
|
|
|
libstore_NAME = libnixstore
|
|
|
|
|
2013-11-22 18:45:52 +02:00
|
|
|
libstore_DIR := $(d)
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2020-10-11 19:39:08 +03:00
|
|
|
libstore_SOURCES := $(wildcard $(d)/*.cc $(d)/builtins/*.cc $(d)/build/*.cc)
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2020-06-16 15:16:39 +03:00
|
|
|
libstore_LIBS = libutil
|
2013-11-23 22:11:02 +02:00
|
|
|
|
2016-05-04 18:16:48 +03:00
|
|
|
libstore_LDFLAGS = $(SQLITE3_LIBS) -lbz2 $(LIBCURL_LIBS) $(SODIUM_LIBS) -pthread
|
2018-02-08 18:26:18 +02:00
|
|
|
ifneq ($(OS), FreeBSD)
|
|
|
|
libstore_LDFLAGS += -ldl
|
|
|
|
endif
|
2016-05-04 18:16:48 +03:00
|
|
|
|
2019-12-13 15:42:55 +02:00
|
|
|
ifeq ($(OS), Darwin)
|
2017-10-18 02:15:51 +03:00
|
|
|
libstore_FILES = sandbox-defaults.sb sandbox-minimal.sb sandbox-network.sb
|
2019-12-13 15:42:55 +02:00
|
|
|
endif
|
2017-10-18 02:15:51 +03:00
|
|
|
|
|
|
|
$(foreach file,$(libstore_FILES),$(eval $(call install-data-in,$(d)/$(file),$(datadir)/nix/sandbox)))
|
|
|
|
|
2016-05-04 18:16:48 +03:00
|
|
|
ifeq ($(ENABLE_S3), 1)
|
2018-05-07 16:23:51 +03:00
|
|
|
libstore_LDFLAGS += -laws-cpp-sdk-transfer -laws-cpp-sdk-s3 -laws-cpp-sdk-core
|
2016-05-04 18:16:48 +03:00
|
|
|
endif
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2014-04-03 17:59:25 +03:00
|
|
|
ifeq ($(OS), SunOS)
|
|
|
|
libstore_LDFLAGS += -lsocket
|
|
|
|
endif
|
|
|
|
|
2018-02-18 09:35:01 +02:00
|
|
|
ifeq ($(HAVE_SECCOMP), 1)
|
2021-02-27 00:06:06 +02:00
|
|
|
libstore_LDFLAGS += $(LIBSECCOMP_LIBS)
|
2017-05-29 12:34:24 +03:00
|
|
|
endif
|
|
|
|
|
2020-03-30 15:29:29 +03:00
|
|
|
libstore_CXXFLAGS += \
|
2020-10-12 20:07:51 +03:00
|
|
|
-I src/libutil -I src/libstore -I src/libstore/build \
|
2015-04-16 19:46:17 +03:00
|
|
|
-DNIX_PREFIX=\"$(prefix)\" \
|
2013-11-22 16:54:18 +02:00
|
|
|
-DNIX_STORE_DIR=\"$(storedir)\" \
|
|
|
|
-DNIX_DATA_DIR=\"$(datadir)\" \
|
|
|
|
-DNIX_STATE_DIR=\"$(localstatedir)/nix\" \
|
|
|
|
-DNIX_LOG_DIR=\"$(localstatedir)/log/nix\" \
|
|
|
|
-DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \
|
|
|
|
-DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
|
2014-08-04 19:00:00 +03:00
|
|
|
-DNIX_BIN_DIR=\"$(bindir)\" \
|
2018-02-15 00:05:55 +02:00
|
|
|
-DNIX_MAN_DIR=\"$(mandir)\" \
|
2017-04-20 20:11:45 +03:00
|
|
|
-DLSOF=\"$(lsof)\"
|
2014-01-09 23:10:35 +02:00
|
|
|
|
2019-10-09 06:12:31 +03:00
|
|
|
ifneq ($(sandbox_shell),)
|
|
|
|
libstore_CXXFLAGS += -DSANDBOX_SHELL="\"$(sandbox_shell)\""
|
|
|
|
endif
|
|
|
|
|
2020-10-20 16:14:02 +03:00
|
|
|
$(d)/local-store.cc: $(d)/schema.sql.gen.hh $(d)/ca-specific-schema.sql.gen.hh
|
2014-01-09 23:10:35 +02:00
|
|
|
|
2017-10-18 02:15:51 +03:00
|
|
|
$(d)/build.cc:
|
2014-02-01 15:28:31 +02:00
|
|
|
|
2017-05-30 18:40:12 +03:00
|
|
|
%.gen.hh: %
|
2017-05-31 18:23:27 +03:00
|
|
|
@echo 'R"foo(' >> $@.tmp
|
|
|
|
$(trace-gen) cat $< >> $@.tmp
|
|
|
|
@echo ')foo"' >> $@.tmp
|
|
|
|
@mv $@.tmp $@
|
2017-05-30 18:40:12 +03:00
|
|
|
|
2020-10-20 16:14:02 +03:00
|
|
|
clean-files += $(d)/schema.sql.gen.hh $(d)/ca-specific-schema.sql.gen.hh
|
2014-09-18 13:00:40 +03:00
|
|
|
|
2014-09-18 16:42:01 +03:00
|
|
|
$(eval $(call install-file-in, $(d)/nix-store.pc, $(prefix)/lib/pkgconfig, 0644))
|
2020-02-03 19:04:09 +02:00
|
|
|
|
|
|
|
$(foreach i, $(wildcard src/libstore/builtins/*.hh), \
|
|
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix/builtins, 0644)))
|
2020-10-12 20:07:51 +03:00
|
|
|
|
|
|
|
$(foreach i, $(wildcard src/libstore/build/*.hh), \
|
|
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix/build, 0644)))
|