Makefile 149 字节
Newer Older
K
Kees Cook 已提交
1 2 3 4 5 6 7 8 9 10
TEST_PROGS := seccomp_bpf
CFLAGS += -Wl,-no-as-needed -Wall
LDFLAGS += -lpthread

all: $(TEST_PROGS)

include ../lib.mk

clean:
	$(RM) $(TEST_PROGS)