diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-06-19 16:41:12 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-06-23 05:07:13 -0400 |
commit | 53499109289846ac115ff2cfc78f0637df5b473d (patch) | |
tree | a155e208427365516923ef1e4e1d7a2a855c32fb /tools/gpio | |
parent | 8674cea84dc6c0b98d8f45d6f2cf348864aabf1b (diff) |
tools/gpio: add install section
Allow user to call install target.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Alexandre Courbot <acourbot@nvidia.com>
Tested-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'tools/gpio')
-rw-r--r-- | tools/gpio/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/gpio/Makefile b/tools/gpio/Makefile index 5a82f15d0071..250a891e6ef0 100644 --- a/tools/gpio/Makefile +++ b/tools/gpio/Makefile | |||
@@ -1,5 +1,7 @@ | |||
1 | include ../scripts/Makefile.include | 1 | include ../scripts/Makefile.include |
2 | 2 | ||
3 | bindir ?= /usr/bin | ||
4 | |||
3 | ifeq ($(srctree),) | 5 | ifeq ($(srctree),) |
4 | srctree := $(patsubst %/,%,$(dir $(shell pwd))) | 6 | srctree := $(patsubst %/,%,$(dir $(shell pwd))) |
5 | srctree := $(patsubst %/,%,$(dir $(srctree))) | 7 | srctree := $(patsubst %/,%,$(dir $(srctree))) |
@@ -62,6 +64,12 @@ clean: | |||
62 | rm -f $(OUTPUT)include/linux/gpio.h | 64 | rm -f $(OUTPUT)include/linux/gpio.h |
63 | find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete | 65 | find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete |
64 | 66 | ||
67 | install: $(ALL_PROGRAMS) | ||
68 | install -d -m 755 $(DESTDIR)$(bindir); \ | ||
69 | for program in $(ALL_PROGRAMS); do \ | ||
70 | install $$program $(DESTDIR)$(bindir); \ | ||
71 | done | ||
72 | |||
65 | FORCE: | 73 | FORCE: |
66 | 74 | ||
67 | .PHONY: all clean FORCE prepare | 75 | .PHONY: all install clean FORCE prepare |