diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T14·54+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T14·54+0100 |
commit | b8e9efc476abc248a17c9e9cd117f3d53e4a7f63 (patch) | |
tree | 3529e1c6b88983e26290d4c72aa0d3274aeb6375 /src/libstore | |
parent | 709cbe4e76e7b0f1b8abddbeb7714e194f6f8a02 (diff) |
New non-recursive, plain Make-based build system
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/Makefile.new | 19 |
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)\" |