Merge tags 'auxdisplay-for-linus-v5.9-rc4', 'clang-format-for-linus-v5.9-rc4' and...
[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)