Makefile 309 字节
Newer Older
1
CFLAGS += -Wall -O2 -lcap -I../../../include/uapi -I../../../lib
2

3
test_objs = test_verifier test_tag test_maps test_lru_map test_lpm_map
4

5
TEST_PROGS := $(test_objs) test_kmod.sh
6 7 8 9
TEST_FILES := $(test_objs)

all: $(test_objs)

10 11
$(test_objs): ../../../lib/bpf/bpf.o

12 13 14 15
include ../lib.mk

clean:
	$(RM) $(test_objs)