Rename Makefile -> local.mk

This commit is contained in:
Eelco Dolstra 2014-01-30 12:11:06 +01:00
parent 4a2ec9c659
commit e0234dfddc
17 changed files with 16 additions and 16 deletions

26
src/libstore/local.mk Normal file
View file

@ -0,0 +1,26 @@
LIBS += libstore
libstore_NAME = libnixstore
libstore_DIR := $(d)
libstore_SOURCES := $(wildcard $(d)/*.cc)
libstore_LIBS = libutil libformat
libstore_LDFLAGS = -lsqlite3 -lbz2
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)\" \
-DPACKAGE_VERSION=\"$(PACKAGE_VERSION)\"
$(d)/local-store.cc: $(d)/schema.sql.hh
%.sql.hh: %.sql
sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $< > $@ || (rm $@ && exit 1)