4 libdir = /usr
/lib
/l2tpns
5 man5dir = /usr
/share
/man
/man5
6 man8dir = /usr
/share
/man
/man8
7 statedir = /var
/lib
/l2tpns
10 DEFINES
+= -DSTATISTICS
11 DEFINES
+= -DSTAT_CALLS
12 DEFINES
+= -DRINGBUFFER
14 DEFINES
+= -DLIBDIR
='"$(libdir)"'
15 DEFINES
+= -DETCDIR
='"$(etcdir)"'
16 DEFINES
+= -DSTATEDIR
='"$(statedir)"'
20 OPTIM
+= -funroll-loops
21 OPTIM
+= -fomit-frame-pointer
22 OPTIM
+= -finline-functions
23 #OPTIM += -fstrength-reduce
28 CPPFLAGS
= $(INCLUDES
) $(DEFINES
)
29 CFLAGS
= -Wall
$(OPTIM
)
32 INSTALL
= install -c
-D
-o root
-g root
34 l2tpns.LIBS
= -lm
-lcli
-ldl
36 OBJS
= arp.o bgp.o cli.o cluster.o constants.o control.o icmp.o \
37 l2tpns.o ll.o md5.o ppp.o radius.o tbf.o util.o
39 PROGRAMS
= l2tpns nsctl
40 PLUGINS
= garden.so throttlectl.so autothrottle.so snoopctl.so \
41 autosnoop.so stripdomain.so setrxspeed.so
43 TESTS
= generateload bounce
45 all: programs plugins tests
51 rm -f
*.o
test/*.o
$(PROGRAMS
) $(PLUGINS
) $(TESTS
) Makefile.tmp Makefile.bak
54 (sed
-n
'p; /^## Dependencies: (autogenerated) ##/q' Makefile
&& \
55 gcc
-MM
$(CPPFLAGS
) $(OBJS
:.o
=.c
) && \
56 gcc
-MM
$(CPPFLAGS
) $(PLUGINS
:.so
=.c
) | sed
's/\.o/.so/') >Makefile.tmp
57 mv Makefile Makefile.bak
58 mv Makefile.tmp Makefile
61 $(LD
) $(LDFLAGS
) -o
$@
$^
$(LDLIBS
) $($@.LIBS
)
63 nsctl
: nsctl.o control.o
64 $(LD
) $(LDFLAGS
) -o
$@
$^
$(LDLIBS
) $($@.LIBS
)
66 generateload
: test/generateload.o
67 $(LD
) $(LDFLAGS
) -o
$@
$^
$(LDLIBS
) $($@.LIBS
)
70 $(LD
) $(LDFLAGS
) -o
$@
$^
$(LDLIBS
) $($@.LIBS
)
73 $(CC
) $(CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
76 $(CC
) -fPIC
-shared
$(CFLAGS
) $(CPPFLAGS
) $(LDFLAGS
) -o
$@
$<
78 # install config files only if a startup-config does not exist yet
79 # this does not interfere when building rpms or debs and makes
80 # fast upgrading via make install possible
83 $(INSTALL
) -m
0755 l2tpns
$(DESTDIR
)$(bindir)/l2tpns
84 $(INSTALL
) -m
0755 nsctl
$(DESTDIR
)$(bindir)/nsctl
86 $(INSTALL
) -m
0644 Docs
/startup-config
.5 $(DESTDIR
)$(man5dir)/startup-config
.5
87 $(INSTALL
) -m
0644 Docs
/l2tpns
.8 $(DESTDIR
)$(man8dir)/l2tpns
.8
88 $(INSTALL
) -m
0644 Docs
/nsctl
.8 $(DESTDIR
)$(man8dir)/nsctl
.8
90 gzip
$(DESTDIR
)$(man5dir)/*.5 $(DESTDIR
)$(man8dir)/*.8
92 @if
[ -f
$(DESTDIR
)$(etcdir
)/startup-config
]; then \
93 echo
'***' Installing default config files in
$(DESTDIR
)$(etcdir
) as .defaults
; \
96 echo
'***' Installing default config files in
$(DESTDIR
)$(etcdir
) - remember to adjust them
; \
100 $(INSTALL
) -m
0600 etc
/startup-config.default
$(DESTDIR
)$(etcdir
)/startup-config
$$suffix; \
101 $(INSTALL
) -m
0644 etc
/ip_pool.default
$(DESTDIR
)$(etcdir
)/ip_pool
$$suffix; \
102 $(INSTALL
) -m
0600 etc
/users.default
$(DESTDIR
)$(etcdir
)/users
$$suffix
104 for plugin in
$(PLUGINS
); do \
105 $(INSTALL
) -m
0755 $$plugin $(DESTDIR
)$(libdir)/$$plugin; \
108 if
[ -z
$(DESTDIR
) ] && [ ! -e
/dev
/net
/tun
]; then \
110 mknod
/dev
/net
/tun c
10 200; \
113 .PHONY
: all clean depend
install
115 ## Dependencies: (autogenerated) ##
116 arp.o
: arp.c l2tpns.h
117 bgp.o
: bgp.c l2tpns.h bgp.h util.h
118 cli.o
: cli.c l2tpns.h util.h cluster.h tbf.h ll.h bgp.h
119 cluster.o
: cluster.c l2tpns.h cluster.h util.h tbf.h bgp.h
120 constants.o
: constants.c constants.h
121 control.o
: control.c l2tpns.h control.h
122 icmp.o
: icmp.c l2tpns.h
123 l2tpns.o
: l2tpns.c md5.h l2tpns.h cluster.h plugin.h ll.h constants.h \
124 control.h util.h tbf.h bgp.h
127 ppp.o
: ppp.c l2tpns.h constants.h plugin.h util.h tbf.h cluster.h
128 radius.o
: radius.c md5.h constants.h l2tpns.h plugin.h util.h
129 tbf.o
: tbf.c l2tpns.h util.h tbf.h
130 util.o
: util.c l2tpns.h bgp.h
131 garden.so
: garden.c l2tpns.h plugin.h control.h
132 throttlectl.so
: throttlectl.c l2tpns.h plugin.h control.h
133 autothrottle.so
: autothrottle.c l2tpns.h plugin.h
134 snoopctl.so
: snoopctl.c l2tpns.h plugin.h control.h
135 autosnoop.so
: autosnoop.c l2tpns.h plugin.h
136 stripdomain.so
: stripdomain.c l2tpns.h plugin.h
137 setrxspeed.so
: setrxspeed.c l2tpns.h plugin.h