blob: 4761e2d65ab80a9e0c9f325edcda72c2d397f812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CFLAGS += -Wall -O2
test_objs = test_verifier test_maps
TEST_PROGS := test_verifier test_maps test_kmod.sh
TEST_FILES := $(test_objs)
all: $(test_objs)
include ../lib.mk
clean:
$(RM) $(test_objs)
|