]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/testing/selftests/gpio/Makefile
scsi: qedi: Remove WARN_ON from clear task context.
[karo-tx-linux.git] / tools / testing / selftests / gpio / Makefile
1
2 TEST_PROGS := gpio-mockup.sh
3 TEST_FILES := gpio-mockup-sysfs.sh $(BINARIES)
4 BINARIES := gpio-mockup-chardev
5
6 include ../lib.mk
7
8 all: $(BINARIES)
9
10 clean:
11         $(RM) $(BINARIES)
12
13 CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/
14 LDLIBS += -lmount -I/usr/include/libmount
15
16 $(BINARIES): ../../../gpio/gpio-utils.o ../../../../usr/include/linux/gpio.h
17
18 ../../../gpio/gpio-utils.o:
19         make ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C ../../../gpio
20
21 ../../../../usr/include/linux/gpio.h:
22         make -C ../../../.. headers_install INSTALL_HDR_PATH=$(shell pwd)/../../../../usr/
23