Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/nccl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Jeaugey <sjeaugey@nvidia.com>2016-06-16 03:26:47 +0300
committerSylvain Jeaugey <sjeaugey@nvidia.com>2016-06-16 04:20:02 +0300
commit155132d3369c71a9ee4fca142a4f2122e8e60ba3 (patch)
tree2569720920f5b224e2ab65de77f6da1254cafa95
parent08ddfe03d21198d8040e1a6dab7d3b1cff48cd67 (diff)
Fix make install to use BUILDDIR
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 70c4c27..3350b81 100644
--- a/Makefile
+++ b/Makefile
@@ -115,8 +115,8 @@ clean :
install : lib
mkdir -p $(PREFIX)/lib
mkdir -p $(PREFIX)/include
- cp -P -v build/lib/* $(PREFIX)/lib/
- cp -v build/include/* $(PREFIX)/include/
+ cp -P -v $(BUILDDIR)/lib/* $(PREFIX)/lib/
+ cp -v $(BUILDDIR)/include/* $(PREFIX)/include/
#### TESTS ####
@@ -181,8 +181,8 @@ DEB_REVISION ?= 1
DEB_TIMESTAMP := $(shell date -R)
deb : lib $(DEB_GEN)
- @printf "Building Debian package"
- debuild -eLD_LIBRARY_PATH -uc -us -d -b
+ @printf "Building Debian package\n"
+ debuild -eBUILDDIR -eLD_LIBRARY_PATH -uc -us -d -b
debclean :
rm -f $(DEB_GEN)