-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKbuild
51 lines (45 loc) · 777 Bytes
/
Kbuild
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
SRC = \
dsr-pkt.c \
dsr-io.c \
dsr-opt.c \
dsr-rreq.c \
dsr-rrep.c \
dsr-rerr.c \
dsr-ack.c \
dsr-srt.c \
send-buf.c \
neigh.c \
maint-buf.c \
dsr-module.c \
dsr-dev.c \
debug.c
HDR = \
atomic.h \
debug.h \
dsr-ack.h \
dsr-dev.h \
dsr.h \
dsr-io.h \
dsr-opt.h \
dsr-pkt.h \
dsr-rerr.h \
dsr-rrep.h \
dsr-rreq.h \
dsr-rtc.h \
dsr-srt.h \
link-cache.h \
list.h \
maint-buf.h \
neigh.h \
send-buf.h \
tbl.h \
timer.h
RTC_SRC = \
link-cache.c
EXTRA_CFLAGS =-DKERNEL26 -DENABLE_DEBUG -Wall -g
obj-m += dsr.o
dsr-objs := $(SRC:%.c=%.o)
obj-m += linkcache.o
linkcache-objs := $(RTC_SRC:%.c=%.o)
clean-files := *~
clean-dirs := .tmp_versions