1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/libstore/local.mk

32 lines
713 B
Makefile
Raw Normal View History

2014-02-01 06:23:14 -05:00
libraries += libstore
libstore_NAME = libnixstore
libstore_DIR := $(d)
2014-01-09 10:53:47 -05:00
libstore_SOURCES := $(wildcard $(d)/*.cc)
libstore_LIBS = libutil libformat
libstore_LDFLAGS = -lsqlite3 -lbz2
2014-04-03 10:59:25 -04: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)\" \
2014-05-26 11:53:17 -04:00
-DNIX_BIN_DIR=\"$(bindir)\"
2014-01-09 16:10:35 -05:00
$(d)/local-store.cc: $(d)/schema.sql.hh
%.sql.hh: %.sql
2014-02-01 08:28:31 -05:00
$(trace-gen) sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $< > $@ || (rm $@ && exit 1)
clean-files += $(d)/schema.sql.hh