1 include ..
/scripts
/Makefile.
include
6 srctree
:= $(patsubst %/,%,$(dir $(shell pwd
)))
7 srctree
:= $(patsubst %/,%,$(dir $(srctree
)))
10 # Do not use make's built-in rules
11 # (this improves performance and avoids hard-to-debug behaviour);
14 CC
= $(CROSS_COMPILE
)gcc
15 LD
= $(CROSS_COMPILE
)ld
16 CFLAGS
+= -O2
-Wall
-g
-D_GNU_SOURCE
-I
$(OUTPUT
)include
18 ALL_TARGETS
:= lsgpio gpio-hammer gpio-event-mon
19 ALL_PROGRAMS
:= $(patsubst %,$(OUTPUT
)%,$(ALL_TARGETS
))
23 export srctree OUTPUT CC LD CFLAGS
24 include $(srctree
)/tools
/build
/Makefile.
include
27 # We need the following to be outside of kernel tree
29 $(OUTPUT
)include/linux
/gpio.h
: ..
/..
/include/uapi
/linux
/gpio.h
30 mkdir
-p
$(OUTPUT
)include/linux
2>&1 || true
31 ln
-sf
$(CURDIR
)/..
/..
/include/uapi
/linux
/gpio.h
$@
33 prepare
: $(OUTPUT
)include/linux
/gpio.h
38 LSGPIO_IN
:= $(OUTPUT
)lsgpio-in.o
39 $(LSGPIO_IN
): prepare FORCE
40 $(Q
)$(MAKE
) $(build
)=lsgpio
41 $(OUTPUT
)lsgpio
: $(LSGPIO_IN
)
42 $(QUIET_LINK
)$(CC
) $(CFLAGS
) $(LDFLAGS
) $< -o
$@
47 GPIO_HAMMER_IN
:= $(OUTPUT
)gpio-hammer-in.o
48 $(GPIO_HAMMER_IN
): prepare FORCE
49 $(Q
)$(MAKE
) $(build
)=gpio-hammer
50 $(OUTPUT
)gpio-hammer
: $(GPIO_HAMMER_IN
)
51 $(QUIET_LINK
)$(CC
) $(CFLAGS
) $(LDFLAGS
) $< -o
$@
56 GPIO_EVENT_MON_IN
:= $(OUTPUT
)gpio-event-mon-in.o
57 $(GPIO_EVENT_MON_IN
): prepare FORCE
58 $(Q
)$(MAKE
) $(build
)=gpio-event-mon
59 $(OUTPUT
)gpio-event-mon
: $(GPIO_EVENT_MON_IN
)
60 $(QUIET_LINK
)$(CC
) $(CFLAGS
) $(LDFLAGS
) $< -o
$@
64 rm -f
$(OUTPUT
)include/linux
/gpio.h
65 find
$(if
$(OUTPUT
),$(OUTPUT
),.
) -name
'*.o' -delete
-o
-name
'\.*.d' -delete
67 install: $(ALL_PROGRAMS
)
68 install -d
-m
755 $(DESTDIR
)$(bindir); \
69 for program in
$(ALL_PROGRAMS
); do \
70 install $$program $(DESTDIR
)$(bindir); \
75 .PHONY
: all install clean FORCE prepare