Miniupnpd: update to 2.0
[tomato.git] / release / src-rt-6.x.4708 / router / miniupnpd / Makefile.linux
blob9e6ec7c35ccff536e008eeb3237f46eda5844a92
1 # $Id: Makefile.linux,v 1.94 2016/04/18 09:06:42 nanard Exp $
2 # MiniUPnP project
3 # (c) 2006-2015 Thomas Bernard
4 # http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
5 # Author : Thomas Bernard
6 # for use with GNU Make
8 # options can be passed to genconfig.sh through CONFIG_OPTIONS :
9 # $ CONFIG_OPTIONS="--ipv6 --igd2" make -f Makefile.linux
11 # To install use :
12 # $ DESTDIR=/dummyinstalldir make -f Makefile.linux install
13 # or :
14 # $ INSTALLPREFIX=/usr/local make -f Makefile.linux install
15 # or :
16 # $ make -f Makefile.linux install
17 # (default INSTALLPREFIX is /usr)
19 # if your system hasn't iptables libiptc headers and binary correctly
20 # installed, you need to get iptables sources from http://netfilter.org/
21 # ./configure them and build them then miniupnpd will build using :
22 # $ IPTABLESPATH=/path/to/iptables-1.4.1 make -f Makefile.linux
24 #CFLAGS = -O -g -DDEBUG
25 CFLAGS ?= -Os
26 CFLAGS += -fno-strict-aliasing
27 CFLAGS += -fno-common
28 CPPFLAGS += -D_GNU_SOURCE
29 CFLAGS += -Wall
30 CFLAGS += -Wextra -Wstrict-prototypes -Wdeclaration-after-statement
31 #CFLAGS += -Wno-missing-field-initializers
32 #CFLAGS += -ansi        # iptables headers does use typeof which is a gcc extension
33 CC ?= gcc
34 RM = rm -f
35 INSTALL = install
36 STRIP ?= strip
37 PKG_CONFIG ?= pkg-config
38 CP = cp
41 INSTALLPREFIX ?= $(PREFIX)/usr
42 SBININSTALLDIR = $(INSTALLPREFIX)/sbin
43 ETCINSTALLDIR = $(PREFIX)/etc/miniupnpd
44 MANINSTALLDIR = $(INSTALLPREFIX)/share/man/man8
46 BASEOBJS = miniupnpd.o upnphttp.o upnpdescgen.o upnpsoap.o \
47            upnpreplyparse.o minixml.o portinuse.o \
48            upnpredirect.o getifaddr.o daemonize.o upnpglobalvars.o \
49            options.o upnppermissions.o minissdp.o natpmp.o pcpserver.o \
50            upnpevents.o upnputils.o getconnstatus.o \
51            upnppinhole.o pcplearndscp.o asyncsendto.o
53 LNXOBJS = linux/getifstats.o linux/ifacewatcher.o linux/getroute.o
54 NETFILTEROBJS = netfilter/iptcrdr.o netfilter/iptpinhole.o netfilter/nfct_get.o
56 ALLOBJS = $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
58 PCFILE_FOUND := $(shell $(PKG_CONFIG) --exists libiptc; echo $$?)
60 ifeq (${PCFILE_FOUND},0)
62 IPTABLESVERSION := $(shell $(PKG_CONFIG) --modversion libiptc)
63 IPTVER1 := $(shell echo $(IPTABLESVERSION) | cut -d. -f1 )
64 IPTVER2 := $(shell echo $(IPTABLESVERSION) | cut -d. -f2 )
65 IPTVER3 := $(shell echo $(IPTABLESVERSION) | cut -d. -f3 )
66 # test if iptables version >= 1.4.3
67 TEST := $(shell [ $(IPTVER1) -gt 1 ] || \
68         [ \( $(IPTVER1) -eq 1 \) -a \
69           \( \( $(IPTVER2) -gt 4 \) -o \
70              \( \( $(IPTVER2) -eq 4 \) -a \( $(IPTVER3) -ge 3 \) \) \) ] && echo 1 )
71 ifeq ($(TEST), 1)
72 CPPFLAGS += -DIPTABLES_143
73 endif
75 CFLAGS  += $(shell $(PKG_CONFIG) --cflags libiptc)
76 LDLIBS  += $(shell $(PKG_CONFIG) --static --libs-only-l libiptc)
77 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L libiptc)
78 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-other libiptc)
79 else
81 ifeq "$(wildcard /etc/gentoo-release )" ""
82 LDLIBS ?= -liptc
83 else # gentoo
84 # the following is better, at least on gentoo with iptables 1.4.6
85 # see http://miniupnp.tuxfamily.org/forum/viewtopic.php?p=1618
86 # and http://miniupnp.tuxfamily.org/forum/viewtopic.php?p=2183
87 LDLIBS ?= -lip4tc
88 CPPFLAGS := -DIPTABLES_143 $(CPPFLAGS)
89 endif
91 ARCH ?= $(shell uname -m | grep -q "x86_64" && echo 64)
92 ifdef IPTABLESPATH
93 CPPFLAGS := $(CPPFLAGS) -I$(IPTABLESPATH)/include/
94 LDFLAGS := $(LDFLAFGS) -L$(IPTABLESPATH)/libiptc/
95 # get iptables version and set IPTABLES_143 macro if needed
96 ifeq ($(TARGET_OPENWRT),)
97 IPTABLESVERSION := $(shell grep "\#define VERSION" $(IPTABLESPATH)/config.h | tr -d \" |cut -d" " -f3 )
98 IPTVER1 := $(shell echo $(IPTABLESVERSION) | cut -d. -f1 )
99 IPTVER2 := $(shell echo $(IPTABLESVERSION) | cut -d. -f2 )
100 IPTVER3 := $(shell echo $(IPTABLESVERSION) | cut -d. -f3 )
101 # test if iptables version >= 1.4.3
102 TEST := $(shell [ $(IPTVER1) -gt 1 ] || \
103         [ \( $(IPTVER1) -eq 1 \) -a \
104           \( \( $(IPTVER2) -gt 4 \) -o \
105              \( \( $(IPTVER2) -eq 4 \) -a \( $(IPTVER3) -ge 3 \) \) \) ] && echo 1 )
106 ifeq ($(TEST), 1)
107 CPPFLAGS := $(CPPFLAGS) -DIPTABLES_143
108 # the following sucks, but works
109 LDLIBS = $(IPTABLESPATH)/libiptc/.libs/libip4tc.o
110 #LDLIBS = $(IPTABLESPATH)/libiptc/.libs/libiptc.a
111 else # ifeq ($(TEST), 1)
112 LDLIBS = $(IPTABLESPATH)/libiptc/libiptc.a
113 endif # ifeq ($(TEST), 1)
114 else # ($(TARGET_OPENWRT),)
115 # openWRT :
116 # check for system-wide iptables files. Test if iptables version >= 1.4.3
117 # the following test has to be verified :
118 TEST := $(shell test -f /usr/include/iptables/internal.h && grep -q "\#define IPTABLES_VERSION" /usr/include/iptables/internal.h && echo 1)
119 ifeq ($(TEST), 1)
120 CPPFLAGS := $(CPPFLAGS) -DIPTABLES_143
121 LDLIBS = -liptc
122 endif  # ($(TEST), 1)
123 TEST_LIB := $(shell test -f /usr/lib$(ARCH)/libiptc.a && echo 1)
124 ifeq ($(TEST_LIB), 1)
125 LDLIBS = -liptc /usr/lib$(ARCH)/libiptc.a
126 endif # ($(TEST_LIB), 1)
127 endif # ($(TARGET_OPENWRT),)
128 else # ifdef IPTABLESPATH
129 # IPTABLESPATH not defined
130 # the following test has to be verified :
131 TEST := $(shell test -f /usr/include/xtables.h && grep -q "XTABLES_VERSION_CODE" /usr/include/xtables.h && echo 1)
132 ifeq ($(TEST), 1)
133 CPPFLAGS := $(CPPFLAGS) -DIPTABLES_143
134 LDLIBS = -liptc
135 TESTIP4TC := $(shell test -f /lib/libip4tc.so && echo 1)
136 ifeq ($(TESTIP4TC), 1)
137 LDLIBS := $(LDLIBS) -lip4tc
138 endif # ($(TESTIP4TC), 1)
139 TESTIP6TC := $(shell test -f /lib/libip6tc.so && echo 1)
140 ifeq ($(TESTIP6TC), 1)
141 LDLIBS := $(LDLIBS) -lip6tc
142 endif # ($(TESTIP6TC), 1)
143 endif # ($(TEST), 1)
144 endif # ifdef IPTABLESPATH
145 endif # ifdef PCFILE_FOUND
147 #LDLIBS += -lnfnetlink
149 TEST := $(shell $(PKG_CONFIG) --atleast-version=1.0.2 libnetfilter_conntrack && $(PKG_CONFIG) --atleast-version=1.0.3 libmnl && echo 1)
150 ifeq ($(TEST),1)
151 CPPFLAGS += -DUSE_NFCT
152 LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l libmnl)
153 LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l libnetfilter_conntrack)
154 endif # ($(TEST),1)
156 LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l libssl)
158 TEST := $(shell $(PKG_CONFIG) --exists uuid && echo 1)
159 ifeq ($(TEST),1)
160 LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l uuid)
161 else
162 $(info please install uuid-dev package / libuuid)
163 endif # ($(TEST),1)
165 TESTUPNPDESCGENOBJS = testupnpdescgen.o upnpdescgen.o
167 EXECUTABLES = miniupnpd testupnpdescgen testgetifstats \
168               testupnppermissions miniupnpdctl testgetifaddr \
169               testgetroute testasyncsendto testportinuse \
170               testssdppktgen
172 .PHONY: all clean install depend genuuid
174 all:    $(EXECUTABLES)
176 clean:
177         $(RM) $(ALLOBJS)
178         $(RM) $(EXECUTABLES)
179         $(RM) testupnpdescgen.o testgetifstats.o
180         $(RM) testupnppermissions.o testgetifaddr.o
181         $(RM) testgetroute.o testasyncsendto.o
182         $(RM) testportinuse.o
183         $(RM) miniupnpdctl.o
184         $(RM) validateupnppermissions validategetifaddr validatessdppktgen
186 install:        miniupnpd miniupnpd.8 miniupnpd.conf genuuid \
187         netfilter/iptables_init.sh netfilter/iptables_removeall.sh \
188         netfilter/ip6tables_init.sh netfilter/ip6tables_removeall.sh \
189         linux/miniupnpd.init.d.script
190         $(STRIP) miniupnpd
191         $(INSTALL) -d $(DESTDIR)$(SBININSTALLDIR)
192         $(INSTALL) miniupnpd $(DESTDIR)$(SBININSTALLDIR)
193         $(INSTALL) -d $(DESTDIR)$(ETCINSTALLDIR)
194         $(INSTALL) netfilter/iptables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
195         $(INSTALL) netfilter/iptables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
196         $(INSTALL) netfilter/ip6tables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
197         $(INSTALL) netfilter/ip6tables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
198         $(INSTALL) --mode=0644 -b miniupnpd.conf $(DESTDIR)$(ETCINSTALLDIR)
199         $(INSTALL) -d $(DESTDIR)$(PREFIX)/etc/init.d
200         $(INSTALL) linux/miniupnpd.init.d.script $(DESTDIR)$(PREFIX)/etc/init.d/miniupnpd
201         $(INSTALL) -d $(DESTDIR)$(MANINSTALLDIR)
202         $(INSTALL) --mode=0644 miniupnpd.8 $(DESTDIR)$(MANINSTALLDIR)
203         gzip -f $(DESTDIR)$(MANINSTALLDIR)/miniupnpd.8
205 # genuuid is using the uuidgen CLI tool which is part of libuuid
206 # from the e2fsprogs
207 # 'cat /proc/sys/kernel/random/uuid' could be also used
208 genuuid:
209 ifeq ($(TARGET_OPENWRT),)
210         sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`(genuuid||uuidgen||uuid) 2>/dev/null`/" miniupnpd.conf
211 else
212         sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`($(STAGING_DIR_HOST)/bin/genuuid||$(STAGING_DIR_HOST)/bin/uuidgen||$(STAGING_DIR_HOST)/bin/uuid) 2>/dev/null`/" miniupnpd.conf
213 endif
215 check:  validateupnppermissions validategetifaddr validatessdppktgen
217 validateupnppermissions:        testupnppermissions testupnppermissions.sh
218         ./testupnppermissions.sh
219         touch $@
221 validategetifaddr:      testgetifaddr testgetifaddr.sh
222         ./testgetifaddr.sh
223         touch $@
225 validatessdppktgen:     testssdppktgen
226         ./testssdppktgen
227         touch $@
229 miniupnpd:      $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
231 testupnpdescgen:        $(TESTUPNPDESCGENOBJS)
233 testgetifstats: testgetifstats.o linux/getifstats.o
235 testupnppermissions:    testupnppermissions.o upnppermissions.o
237 testgetifaddr:  testgetifaddr.o getifaddr.o
239 testgetroute:   testgetroute.o linux/getroute.o upnputils.o
241 testssdppktgen: testssdppktgen.o
243 testasyncsendto:        testasyncsendto.o asyncsendto.o upnputils.o \
244         linux/getroute.o
246 testportinuse:  testportinuse.o portinuse.o getifaddr.o \
247         netfilter/iptcrdr.o
249 miniupnpdctl:   miniupnpdctl.o
251 config.h:       genconfig.sh VERSION
252         ./genconfig.sh $(CONFIG_OPTIONS)
254 depend: config.h
255         makedepend -f$(MAKEFILE_LIST) -Y \
256         $(ALLOBJS:.o=.c) $(TESTUPNPDESCGENOBJS:.o=.c) \
257         testgetifstats.c testupnppermissions.c testgetifaddr.c \
258         testgetroute.c testasyncsendto.c testportinuse.c \
259         miniupnpdctl.c testssdppktgen.c 2>/dev/null
261 # DO NOT DELETE
263 miniupnpd.o: config.h macros.h upnpglobalvars.h upnppermissions.h
264 miniupnpd.o: miniupnpdtypes.h upnphttp.h upnpdescgen.h miniupnpdpath.h
265 miniupnpd.o: getifaddr.h upnpsoap.h options.h minissdp.h upnpredirect.h
266 miniupnpd.o: upnppinhole.h daemonize.h upnpevents.h asyncsendto.h natpmp.h
267 miniupnpd.o: pcpserver.h commonrdr.h upnputils.h ifacewatcher.h
268 upnphttp.o: config.h upnphttp.h upnpdescgen.h miniupnpdpath.h upnpsoap.h
269 upnphttp.o: upnpevents.h upnputils.h
270 upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
271 upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
272 upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
273 upnpsoap.o: macros.h config.h upnpglobalvars.h upnppermissions.h
274 upnpsoap.o: miniupnpdtypes.h upnphttp.h upnpsoap.h upnpreplyparse.h
275 upnpsoap.o: upnpredirect.h upnppinhole.h getifaddr.h getifstats.h
276 upnpsoap.o: getconnstatus.h upnpurns.h
277 upnpreplyparse.o: upnpreplyparse.h minixml.h
278 minixml.o: minixml.h
279 portinuse.o: macros.h config.h upnpglobalvars.h upnppermissions.h
280 portinuse.o: miniupnpdtypes.h getifaddr.h portinuse.h netfilter/iptcrdr.h
281 portinuse.o: commonrdr.h
282 upnpredirect.o: macros.h config.h upnpredirect.h upnpglobalvars.h
283 upnpredirect.o: upnppermissions.h miniupnpdtypes.h upnpevents.h portinuse.h
284 upnpredirect.o: netfilter/iptcrdr.h commonrdr.h
285 getifaddr.o: config.h getifaddr.h
286 daemonize.o: daemonize.h config.h
287 upnpglobalvars.o: config.h upnpglobalvars.h upnppermissions.h
288 upnpglobalvars.o: miniupnpdtypes.h upnpdescstrings.h
289 options.o: config.h options.h upnppermissions.h upnpglobalvars.h
290 options.o: miniupnpdtypes.h
291 upnppermissions.o: config.h upnppermissions.h
292 minissdp.o: config.h upnpdescstrings.h miniupnpdpath.h upnphttp.h
293 minissdp.o: upnpglobalvars.h upnppermissions.h miniupnpdtypes.h minissdp.h
294 minissdp.o: upnputils.h getroute.h asyncsendto.h codelength.h
295 natpmp.o: macros.h config.h natpmp.h upnpglobalvars.h upnppermissions.h
296 natpmp.o: miniupnpdtypes.h getifaddr.h upnpredirect.h commonrdr.h upnputils.h
297 natpmp.o: portinuse.h asyncsendto.h
298 pcpserver.o: config.h pcpserver.h macros.h upnpglobalvars.h upnppermissions.h
299 pcpserver.o: miniupnpdtypes.h pcplearndscp.h upnpredirect.h commonrdr.h
300 pcpserver.o: getifaddr.h asyncsendto.h pcp_msg_struct.h netfilter/iptcrdr.h
301 pcpserver.o: commonrdr.h
302 upnpevents.o: config.h upnpevents.h miniupnpdpath.h upnpglobalvars.h
303 upnpevents.o: upnppermissions.h miniupnpdtypes.h upnpdescgen.h upnputils.h
304 upnputils.o: config.h upnputils.h upnpglobalvars.h upnppermissions.h
305 upnputils.o: miniupnpdtypes.h getroute.h
306 getconnstatus.o: getconnstatus.h getifaddr.h
307 upnppinhole.o: macros.h config.h upnpredirect.h upnpglobalvars.h
308 upnppinhole.o: upnppermissions.h miniupnpdtypes.h upnpevents.h
309 upnppinhole.o: netfilter/iptpinhole.h
310 pcplearndscp.o: config.h upnpglobalvars.h upnppermissions.h miniupnpdtypes.h
311 pcplearndscp.o: pcplearndscp.h
312 asyncsendto.o: asyncsendto.h
313 linux/getifstats.o: config.h getifstats.h
314 linux/ifacewatcher.o: config.h ifacewatcher.h config.h minissdp.h
315 linux/ifacewatcher.o: miniupnpdtypes.h getifaddr.h upnpglobalvars.h
316 linux/ifacewatcher.o: upnppermissions.h natpmp.h
317 linux/getroute.o: getroute.h upnputils.h
318 netfilter/iptcrdr.o: macros.h config.h netfilter/iptcrdr.h commonrdr.h
319 netfilter/iptcrdr.o: config.h upnpglobalvars.h upnppermissions.h
320 netfilter/iptcrdr.o: miniupnpdtypes.h
321 netfilter/iptpinhole.o: config.h netfilter/iptpinhole.h upnpglobalvars.h
322 netfilter/iptpinhole.o: upnppermissions.h config.h miniupnpdtypes.h
323 testupnpdescgen.o: macros.h config.h upnpdescgen.h upnpdescstrings.h
324 testupnpdescgen.o: getifaddr.h
325 upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
326 upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
327 upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
328 testgetifstats.o: getifstats.h
329 testupnppermissions.o: upnppermissions.h config.h
330 testgetifaddr.o: config.h getifaddr.h
331 testgetroute.o: getroute.h upnputils.h upnpglobalvars.h upnppermissions.h
332 testgetroute.o: config.h miniupnpdtypes.h
333 testasyncsendto.o: miniupnpdtypes.h config.h upnputils.h asyncsendto.h
334 testportinuse.o: macros.h config.h portinuse.h
335 miniupnpdctl.o: macros.h
336 testssdppktgen.o: macros.h config.h miniupnpdpath.h upnphttp.h