GNU Linux-libre 4.9.337-gnu1
[releases.git] / tools / testing / selftests / capabilities / Makefile
1 TEST_FILES := validate_cap
2 TEST_PROGS := test_execve
3
4 BINARIES := $(TEST_FILES) $(TEST_PROGS)
5
6 CFLAGS += -O2 -g -std=gnu99 -Wall
7 LDLIBS += -lcap-ng -lrt -ldl
8
9 all: $(BINARIES)
10
11 clean:
12         $(RM) $(BINARIES)
13
14 include ../lib.mk
15