From 53499109289846ac115ff2cfc78f0637df5b473d Mon Sep 17 00:00:00 2001 From: Andy Shevchenko Date: Sun, 19 Jun 2016 23:41:12 +0300 Subject: tools/gpio: add install section Allow user to call install target. Signed-off-by: Andy Shevchenko Acked-by: Alexandre Courbot Tested-by: Alexandre Courbot Signed-off-by: Linus Walleij --- tools/gpio/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tools/gpio') 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 @@ include ../scripts/Makefile.include +bindir ?= /usr/bin + ifeq ($(srctree),) srctree := $(patsubst %/,%,$(dir $(shell pwd))) srctree := $(patsubst %/,%,$(dir $(srctree))) @@ -62,6 +64,12 @@ clean: rm -f $(OUTPUT)include/linux/gpio.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 -- cgit v1.2.3-59-g8ed1b