diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2017-01-19T17·21+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19T17·21+0100 |
commit | 8af062f372ae5db6a90700641f15d98505b4a839 (patch) | |
tree | 1c4f61be3cca82b3a03255557d9e5f3d87107018 /src/build-remote/local.mk | |
parent | 21948deed99a3295e4d5666e027a6ca42dc00b40 (diff) | |
parent | 28db29786277ce6790ffb1567f9e679c62737b96 (diff) |
Merge pull request #981 from shlevy/build-remote-c++
build-remote: Implement in C++
Diffstat (limited to 'src/build-remote/local.mk')
-rw-r--r-- | src/build-remote/local.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/build-remote/local.mk b/src/build-remote/local.mk new file mode 100644 index 000000000000..05b8cb451435 --- /dev/null +++ b/src/build-remote/local.mk @@ -0,0 +1,11 @@ +programs += build-remote + +build-remote_DIR := $(d) + +build-remote_INSTALL_DIR := $(libexecdir)/nix + +build-remote_LIBS = libmain libutil libformat libstore + +build-remote_SOURCES := $(d)/build-remote.cc + +build-remote_CXXFLAGS = -DSYSCONFDIR="\"$(sysconfdir)\"" -Isrc/nix-store |