aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/capabilities/Makefile
blob: 008602aed9209237254ca334a0a745f06c0888c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TEST_FILES := validate_cap
TEST_PROGS := test_execve

BINARIES := $(TEST_FILES) $(TEST_PROGS)

CFLAGS += -O2 -g -std=gnu99 -Wall
LDLIBS += -lcap-ng -lrt -ldl

all: $(BINARIES)

clean:
	$(RM) $(BINARIES)

include ../lib.mk