xtensa: fix high memory/reserved memory collision
[cris-mirror.git] / tools / gpio / Makefile
blob805a2c0cf4cd37c42eeb19e4c72a2e3bc74ced7f
1 # SPDX-License-Identifier: GPL-2.0
2 include ../scripts/Makefile.include
4 bindir ?= /usr/bin
6 ifeq ($(srctree),)
7 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
8 srctree := $(patsubst %/,%,$(dir $(srctree)))
9 endif
11 # Do not use make's built-in rules
12 # (this improves performance and avoids hard-to-debug behaviour);
13 MAKEFLAGS += -r
15 CC = $(CROSS_COMPILE)gcc
16 LD = $(CROSS_COMPILE)ld
17 CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include
19 ALL_TARGETS := lsgpio gpio-hammer gpio-event-mon
20 ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS))
22 all: $(ALL_PROGRAMS)
24 export srctree OUTPUT CC LD CFLAGS
25 include $(srctree)/tools/build/Makefile.include
28 # We need the following to be outside of kernel tree
30 $(OUTPUT)include/linux/gpio.h: ../../include/uapi/linux/gpio.h
31 mkdir -p $(OUTPUT)include/linux 2>&1 || true
32 ln -sf $(CURDIR)/../../include/uapi/linux/gpio.h $@
34 prepare: $(OUTPUT)include/linux/gpio.h
37 # lsgpio
39 LSGPIO_IN := $(OUTPUT)lsgpio-in.o
40 $(LSGPIO_IN): prepare FORCE
41 $(Q)$(MAKE) $(build)=lsgpio
42 $(OUTPUT)lsgpio: $(LSGPIO_IN)
43 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
46 # gpio-hammer
48 GPIO_HAMMER_IN := $(OUTPUT)gpio-hammer-in.o
49 $(GPIO_HAMMER_IN): prepare FORCE
50 $(Q)$(MAKE) $(build)=gpio-hammer
51 $(OUTPUT)gpio-hammer: $(GPIO_HAMMER_IN)
52 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
55 # gpio-event-mon
57 GPIO_EVENT_MON_IN := $(OUTPUT)gpio-event-mon-in.o
58 $(GPIO_EVENT_MON_IN): prepare FORCE
59 $(Q)$(MAKE) $(build)=gpio-event-mon
60 $(OUTPUT)gpio-event-mon: $(GPIO_EVENT_MON_IN)
61 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
63 clean:
64 rm -f $(ALL_PROGRAMS)
65 rm -f $(OUTPUT)include/linux/gpio.h
66 find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
68 install: $(ALL_PROGRAMS)
69 install -d -m 755 $(DESTDIR)$(bindir); \
70 for program in $(ALL_PROGRAMS); do \
71 install $$program $(DESTDIR)$(bindir); \
72 done
74 FORCE:
76 .PHONY: all install clean FORCE prepare