aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/Makefile
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-09-26 23:38:09 +0200
committerKim Alvefur <zash@zash.se>2015-09-26 23:38:09 +0200
commitd23458ef67f8faea068ac5fac7b19143c2ce6ce6 (patch)
tree3e30657c42e1b50cb574333df8293dee4b98938e /util-src/Makefile
parent2d99e30374fee2fdeff887d72e71c5ecbcd2e212 (diff)
downloadprosody-d23458ef67f8faea068ac5fac7b19143c2ce6ce6.tar.gz
prosody-d23458ef67f8faea068ac5fac7b19143c2ce6ce6.zip
util-src/Makefile: Use variables for install binary and target directory
Diffstat (limited to 'util-src/Makefile')
-rw-r--r--util-src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/util-src/Makefile b/util-src/Makefile
index 1f092b1e..d99c9515 100644
--- a/util-src/Makefile
+++ b/util-src/Makefile
@@ -11,6 +11,9 @@ CXX?=g++
LD?=gcc
CFLAGS+=-ggdb
+INSTALL_DATA=install -m644
+TARGET?=../util/
+
ALL=encodings.so hashes.so net.so pposix.so signal.so table.so
.PHONY: all install clean
@@ -19,7 +22,7 @@ ALL=encodings.so hashes.so net.so pposix.so signal.so table.so
all: $(ALL)
install: $(ALL)
- install $^ ../util/
+ $(INSTALL_DATA) $^ $(TARGET)
clean:
rm -f $(ALL)