aboutsummaryrefslogtreecommitdiffstats
path: root/tools/iio
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2017-07-29 03:36:05 +0300
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2017-08-09 14:31:58 +0100
commit25e3f85aa8dd7adf976a9a0027eee6f4f56eae30 (patch)
tree2adca981d2d5ec37c4511a61a985510f9d886808 /tools/iio
parentiio: tools: move to tools buildsystem (diff)
downloadlinux-dev-25e3f85aa8dd7adf976a9a0027eee6f4f56eae30.tar.xz
linux-dev-25e3f85aa8dd7adf976a9a0027eee6f4f56eae30.zip
iio: tools: add install section
Allow user to call install target. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'tools/iio')
-rw-r--r--tools/iio/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/iio/Makefile b/tools/iio/Makefile
index 5581c062421a..d4d956020adf 100644
--- a/tools/iio/Makefile
+++ b/tools/iio/Makefile
@@ -1,5 +1,7 @@
include ../scripts/Makefile.include
+bindir ?= /usr/bin
+
ifeq ($(srctree),)
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
srctree := $(patsubst %/,%,$(dir $(srctree)))
@@ -54,6 +56,12 @@ clean:
rm -rf $(OUTPUT)include/linux/iio
find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
+install: $(ALL_PROGRAMS)
+ install -d -m 755 $(DESTDIR)$(bindir); \
+ for program in $(ALL_PROGRAMS); do \
+ install $$program $(DESTDIR)$(bindir); \
+ done
+
FORCE:
-.PHONY: all clean FORCE prepare
+.PHONY: all install clean FORCE prepare