New non-recursive, plain Make-based build system
This commit is contained in:
parent
709cbe4e76
commit
b8e9efc476
15 changed files with 183 additions and 0 deletions
19
src/libstore/Makefile.new
Normal file
19
src/libstore/Makefile.new
Normal file
|
|
@ -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)\"
|
||||
Loading…
Add table
Add a link
Reference in a new issue