Nix/src/libstore/local.mk

35 lines
825 B
Makefile
Raw Normal View History

2014-02-01 12:23:14 +01:00
libraries += libstore
libstore_NAME = libnixstore
libstore_DIR := $(d)
2014-01-09 16:53:47 +01:00
libstore_SOURCES := $(wildcard $(d)/*.cc)
libstore_LIBS = libutil libformat
libstore_LDFLAGS = -lsqlite3 -lbz2
2014-04-03 16:59:25 +02:00
ifeq ($(OS), SunOS)
libstore_LDFLAGS += -lsocket
endif
libstore_CXXFLAGS = \
-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)\" \
-DNIX_BIN_DIR=\"$(bindir)\" \
-DBASH_PATH="\"$(bash)\""
2014-01-09 22:10:35 +01:00
$(d)/local-store.cc: $(d)/schema.sql.hh
%.sql.hh: %.sql
2014-02-01 14:28:31 +01:00
$(trace-gen) sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $< > $@ || (rm $@ && exit 1)
clean-files += $(d)/schema.sql.hh
2014-09-18 12:00:40 +02:00
$(eval $(call install-file-in, $(d)/nix-store.pc, $(prefix)/lib/pkgconfig, 0644))