Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.9-rc5 12 lines 363 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# Makefile for LKDTM regression tests 3 4include ../lib.mk 5 6# NOTE: $(OUTPUT) won't get default value if used before lib.mk 7TEST_FILES := tests.txt 8TEST_GEN_PROGS = $(patsubst %,$(OUTPUT)/%.sh,$(shell awk '{print $$1}' tests.txt | sed -e 's/\#//')) 9all: $(TEST_GEN_PROGS) 10 11$(OUTPUT)/%: run.sh tests.txt 12 install -m 0744 run.sh $@