Makefile 280 字节
Newer Older
1
CFLAGS += -Wall -O2 -I../../../../usr/include
2

3
test_objs = test_verifier test_maps test_lru_map test_lpm_map
4

5
TEST_PROGS := test_verifier test_maps test_lru_map test_lpm_map test_kmod.sh
6 7 8 9 10 11 12 13
TEST_FILES := $(test_objs)

all: $(test_objs)

include ../lib.mk

clean:
	$(RM) $(test_objs)