mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
19 lines
565 B
Text
19 lines
565 B
Text
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)\"
|