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