blob: db2597759c318e80ad43aaee9f3f275981c51f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
.PHONY: default build test
-include local.mak
default: build
BINDING+=net.so
UNAME=$(shell uname)
include $(UNAME).mak
build: $(BINDING)
prefix=/usr
SODIR = $(DESTDIR)$(prefix)/lib/lua/5.1/
.PHONY: install
install: $(BINDING)
mkdir -p $(SODIR)
../libnet/install-sh -t $(SODIR) $(BINDING)
CWARNS = -Wall \
-Wcast-align \
-Wnested-externs \
-Wpointer-arith \
-Wshadow \
-Wwrite-strings
DNETDEFS=$(shell dnet-config --cflags)
LNETDEFS=$(shell sh ../libnet/libnet-config --cflags --defines)
COPT=-O2 -DNDEBUG -g
CFLAGS=$(CWARNS) $(CDEFS) $(CLUA) $(LDFLAGS) -I../libnet/include -L../libnet/src/.libs/
LDLIBS=$(LLUA)
LDDNET=$(shell dnet-config --libs)
LDLNET=$(shell sh ../libnet/libnet-config --libs)
CC.SO := $(CC) $(COPT) $(CFLAGS)
%.so: %.c
$(CC.SO) -o $@ $^ $(LDLIBS)
net.so: net.c libnet_decode.c
net.so: LDLIBS+=$(LDDNET) $(LDLNET)
net.so: CDEFS=$(DNETDEFS) $(LNETDEFS)
net.so: dnet.h
dnet.h:
if test -e /usr/include/dumbnet.h; then echo '#include<dumbnet.h>' > dnet.h; \
else echo '#include<dnet.h>' > dnet.h; fi
TNET=$(wildcard test-*.lua)
TOUT=$(TNET:.lua=.test)
echo:
echo $(TOUT)
test: net.test pcap.test recoding.test $(TOUT)
%.test: %.lua net.so
lua $<
touch $@
%.test: %-test %.so
lua $<
touch $@
%.test: %-test net.so
lua $<
touch $@
|