Skip to content

Commit

Permalink
spi: tools: add install section
Browse files Browse the repository at this point in the history
Allow user to call install target.

Signed-off-by: Andy Shevchenko <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
andy-shev authored and broonie committed Jul 26, 2017
1 parent f325b73 commit e9d4650
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ kvm_stat: FORCE
$(call descend,kvm/$@)

all: acpi cgroup cpupower gpio hv firewire lguest liblockdep \
perf selftests turbostat usb \
perf selftests spi turbostat usb \
virtio vm net x86_energy_perf_policy \
tmon freefall objtool kvm_stat

Expand All @@ -101,7 +101,7 @@ acpi_install:
cpupower_install:
$(call descend,power/$(@:_install=),install)

cgroup_install firewire_install gpio_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
cgroup_install firewire_install gpio_install hv_install lguest_install perf_install spi_install usb_install virtio_install vm_install net_install objtool_install:
$(call descend,$(@:_install=),install)

liblockdep_install:
Expand Down
10 changes: 9 additions & 1 deletion tools/spi/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
include ../scripts/Makefile.include

bindir ?= /usr/bin

ifeq ($(srctree),)
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
srctree := $(patsubst %/,%,$(dir $(srctree)))
Expand Down Expand Up @@ -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

0 comments on commit e9d4650

Please sign in to comment.