Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6-microblaze.git] / tools / testing / selftests / uevent / Makefile
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)