mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 10:26:09 +07:00
b2d35fa5fc
If the kernel headers aren't installed we can't build all the tests. Add a new make target rule 'khdr' in the file lib.mk to generate the kernel headers and that gets include for every test-dir Makefile that includes lib.mk If the testdir in turn have its own sub-dirs the top_srcdir needs to be set to the linux-rootdir to be able to generate the kernel headers. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
29 lines
814 B
Makefile
29 lines
814 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
TEST_PROGS := gpio-mockup.sh
|
|
TEST_FILES := gpio-mockup-sysfs.sh $(BINARIES)
|
|
BINARIES := gpio-mockup-chardev
|
|
EXTRA_PROGS := ../gpiogpio-event-mon ../gpiogpio-hammer ../gpiolsgpio
|
|
EXTRA_DIRS := ../gpioinclude/
|
|
EXTRA_OBJS := ../gpiogpio-event-mon-in.o ../gpiogpio-event-mon.o
|
|
EXTRA_OBJS += ../gpiogpio-hammer-in.o ../gpiogpio-utils.o ../gpiolsgpio-in.o
|
|
EXTRA_OBJS += ../gpiolsgpio.o
|
|
|
|
include ../lib.mk
|
|
|
|
all: $(BINARIES)
|
|
|
|
override define CLEAN
|
|
$(RM) $(BINARIES) $(EXTRA_PROGS) $(EXTRA_OBJS)
|
|
$(RM) -r $(EXTRA_DIRS)
|
|
endef
|
|
|
|
CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/
|
|
LDLIBS += -lmount -I/usr/include/libmount
|
|
|
|
$(BINARIES):| khdr
|
|
$(BINARIES): ../../../gpio/gpio-utils.o
|
|
|
|
../../../gpio/gpio-utils.o:
|
|
make ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C ../../../gpio
|