Merge tag 'devicetree-fixes-for-4.14' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / tools / testing / selftests / seccomp / Makefile
1 all:
2
3 include ../lib.mk
4
5 .PHONY: all clean
6
7 BINARIES := seccomp_bpf seccomp_benchmark
8 CFLAGS += -Wl,-no-as-needed -Wall
9
10 seccomp_bpf: seccomp_bpf.c ../kselftest_harness.h
11         $(CC) $(CFLAGS) $(LDFLAGS) -lpthread $< -o $@
12
13 TEST_PROGS += $(BINARIES)
14 EXTRA_CLEAN := $(BINARIES)
15
16 all: $(BINARIES)