1 # SPDX-License-Identifier: GPL-2.0 2 all: 3 4 include ../lib.mk 5 6 .PHONY: all clean 7 8 BINARIES := uevent_filtering 9 CFLAGS += -Wl,-no-as-needed -Wall 10 11 uevent_filtering: uevent_filtering.c ../kselftest.h ../kselftest_harness.h 12 $(CC) $(CFLAGS) $< -o $@ 13 14 TEST_PROGS += $(BINARIES) 15 EXTRA_CLEAN := $(BINARIES) 16 17 all: $(BINARIES)
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.