about summary refs log tree commit diff
path: root/src/libstore/Makefile.new
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/Makefile.new')
-rw-r--r--src/libstore/Makefile.new19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libstore/Makefile.new b/src/libstore/Makefile.new
new file mode 100644
index 000000000000..24011c244349
--- /dev/null
+++ b/src/libstore/Makefile.new
@@ -0,0 +1,19 @@
+LIBS += libstore
+
+libstore_DIR := $(here)
+
+libstore_SOURCES = \
+  store-api.cc local-store.cc remote-store.cc derivations.cc build.cc misc.cc \
+  globals.cc references.cc pathlocks.cc gc.cc optimise-store.cc
+
+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)\" \
+ -DNIX_VERSION=\"$(VERSION)\"