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
|
|
|
|
2014-01-09 17:53:47 +02:00
|
|
|
libstore_SOURCES := $(wildcard $(d)/*.cc)
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2013-11-23 22:11:02 +02:00
|
|
|
libstore_LIBS = libutil libformat
|
|
|
|
|
2016-05-04 18:16:48 +03:00
|
|
|
libstore_LDFLAGS = $(SQLITE3_LIBS) -lbz2 $(LIBCURL_LIBS) $(SODIUM_LIBS) -pthread
|
|
|
|
|
2017-10-18 02:15:51 +03: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 18:16:48 +03:00
|
|
|
ifeq ($(ENABLE_S3), 1)
|
|
|
|
libstore_LDFLAGS += -laws-cpp-sdk-s3 -laws-cpp-sdk-core
|
|
|
|
endif
|
2013-11-22 16:54:18 +02:00
|
|
|
|
2014-04-03 17:59:25 +03:00
|
|
|
ifeq ($(OS), SunOS)
|
|
|
|
libstore_LDFLAGS += -lsocket
|
|
|
|
endif
|
|
|
|
|
2017-05-29 12:34:24 +03:00
|
|
|
ifeq ($(OS), Linux)
|
|
|
|
libstore_LDFLAGS += -lseccomp
|
|
|
|
endif
|
|
|
|
|
2013-11-22 16:54:18 +02:00
|
|
|
libstore_CXXFLAGS = \
|
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)\" \
|
2017-05-15 18:30:33 +03:00
|
|
|
-DSANDBOX_SHELL="\"$(sandbox_shell)\"" \
|
2017-04-20 20:11:45 +03:00
|
|
|
-DLSOF=\"$(lsof)\"
|
2014-01-09 23:10:35 +02:00
|
|
|
|
2017-05-30 18:40:12 +03:00
|
|
|
$(d)/local-store.cc: $(d)/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
|
|
|
|
2017-10-18 02:15:51 +03:00
|
|
|
clean-files += $(d)/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))
|