summaryrefslogtreecommitdiffstats
path: root/tools/spi
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2017-07-26 12:59:30 +0300
committerMark Brown <broonie@kernel.org>2017-07-26 12:25:28 +0100
commite9d4650dcc59092b8cc35e6e7a54184d6f124173 (patch)
treecec81ef5e8d099cb7bb4104af40e1f082cea78d4 /tools/spi
parentf325b73dc4db9d6c2393805b4f468e82d730764e (diff)
downloadop-kernel-dev-e9d4650dcc59092b8cc35e6e7a54184d6f124173.zip
op-kernel-dev-e9d4650dcc59092b8cc35e6e7a54184d6f124173.tar.gz
spi: tools: add install section
Allow user to call install target. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'tools/spi')
-rw-r--r--tools/spi/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/spi/Makefile b/tools/spi/Makefile
index aa95172..90615e1 100644
--- a/tools/spi/Makefile
+++ b/tools/spi/Makefile
@@ -1,5 +1,7 @@
include ../scripts/Makefile.include
+bindir ?= /usr/bin
+
ifeq ($(srctree),)
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
srctree := $(patsubst %/,%,$(dir $(srctree)))
@@ -53,6 +55,12 @@ clean:
rm -f $(OUTPUT)include/linux/spi/spidev.h
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
OpenPOWER on IntegriCloud