mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-11 14:44:16 +00:00
298 lines
11 KiB
Makefile
298 lines
11 KiB
Makefile
# $Id: Makefile.linux,v 1.95 2017/12/12 11:40:14 nanard Exp $
|
|
# MiniUPnP project
|
|
# (c) 2006-2020 Thomas Bernard
|
|
# http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/
|
|
# Author : Thomas Bernard
|
|
# for use with GNU Make
|
|
#
|
|
# options can be passed to configure through CONFIG_OPTIONS :
|
|
# $ CONFIG_OPTIONS="--ipv6 --igd2" make
|
|
#
|
|
# To install use :
|
|
# $ DESTDIR=/dummyinstalldir make install
|
|
# or :
|
|
# $ INSTALLPREFIX=/usr/local make install
|
|
# or :
|
|
# $ make install
|
|
# (default INSTALLPREFIX is /usr)
|
|
#
|
|
# if your system hasn't iptables libiptc headers and binary correctly
|
|
# installed, you need to get iptables sources from http://netfilter.org/
|
|
# ./configure them and build them then miniupnpd will build using :
|
|
# $ IPTABLESPATH=/path/to/iptables-1.4.1 make
|
|
#
|
|
CONFIG_OPTIONS += --firewall=iptables
|
|
#CFLAGS = -O -g -DDEBUG
|
|
CFLAGS ?= -Os
|
|
CFLAGS += -fno-strict-aliasing
|
|
CFLAGS += -fno-common
|
|
CFLAGS += -fstack-protector -fPIE
|
|
CFLAGS += -D_FORTIFY_SOURCE=2
|
|
CPPFLAGS += -D_GNU_SOURCE
|
|
CFLAGS += -Wall
|
|
CFLAGS += -Wextra -Wstrict-prototypes -Wdeclaration-after-statement
|
|
#CFLAGS += -Wno-missing-field-initializers
|
|
#CFLAGS += -ansi # iptables headers does use typeof which is a gcc extension
|
|
LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
|
|
CC ?= gcc
|
|
RM = rm -f
|
|
INSTALL = install
|
|
STRIP ?= strip
|
|
PKG_CONFIG ?= pkg-config
|
|
CP = cp
|
|
DOXYGEN ?= doxygen
|
|
|
|
|
|
INSTALLPREFIX ?= $(PREFIX)/usr
|
|
SBININSTALLDIR = $(INSTALLPREFIX)/sbin
|
|
ETCINSTALLDIR = $(PREFIX)/etc/miniupnpd
|
|
MANINSTALLDIR = $(INSTALLPREFIX)/share/man/man8
|
|
|
|
include gitrev.mk config.mk
|
|
|
|
BASEOBJS = miniupnpd.o upnphttp.o upnpdescgen.o upnpsoap.o \
|
|
upnpreplyparse.o minixml.o portinuse.o \
|
|
upnpredirect.o getifaddr.o daemonize.o upnpglobalvars.o \
|
|
options.o upnppermissions.o minissdp.o natpmp.o pcpserver.o \
|
|
upnpevents.o upnputils.o getconnstatus.o \
|
|
upnpstun.o \
|
|
upnppinhole.o pcplearndscp.o asyncsendto.o
|
|
|
|
LNXOBJS = linux/getifstats.o linux/ifacewatcher.o linux/getroute.o
|
|
NETFILTEROBJS = netfilter/iptcrdr.o netfilter/iptpinhole.o netfilter/nfct_get.o
|
|
|
|
ALLOBJS = $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
|
|
|
|
ifneq ($(IPTABLES_PCFILE_FOUND),1)
|
|
|
|
ifeq "$(wildcard /etc/gentoo-release )" ""
|
|
LDLIBS ?= -liptc
|
|
else # gentoo
|
|
# the following is better, at least on gentoo with iptables 1.4.6
|
|
# see http://miniupnp.tuxfamily.org/forum/viewtopic.php?p=1618
|
|
# and http://miniupnp.tuxfamily.org/forum/viewtopic.php?p=2183
|
|
LDLIBS ?= -lip4tc
|
|
CPPFLAGS := -DIPTABLES_143 $(CPPFLAGS)
|
|
endif
|
|
|
|
endif # ifneq ($(IPTABLES_PCFILE_FOUND),1)
|
|
|
|
#LDLIBS += -lnfnetlink
|
|
|
|
# OpenWrt packager disables https server for IGD v2 and hardcodes libuuid support
|
|
ifeq ($(TARGET_OPENWRT),)
|
|
LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l libssl)
|
|
|
|
TEST := $(shell $(PKG_CONFIG) --exists uuid && echo 1)
|
|
ifeq ($(TEST),1)
|
|
LDLIBS += $(shell $(PKG_CONFIG) --static --libs-only-l uuid)
|
|
else
|
|
$(info please install uuid-dev package / libuuid)
|
|
endif # ($(TEST),1)
|
|
endif # ($(TARGET_OPENWRT,)
|
|
|
|
GLIBC_VERSION := $(shell ldd --version | head -n 1 | sed 's/^.* //')
|
|
GLIBC_VERSION_MAJOR = $(shell echo $(GLIBC_VERSION) | cut -f 1 -d . )
|
|
GLIBC_VERSION_MINOR = $(shell echo $(GLIBC_VERSION) | cut -f 2 -d . )
|
|
# clock_gettime() needs -lrt when glibc version < 2.17
|
|
LDLIBS += $(shell if [ $(GLIBC_VERSION_MAJOR) -lt 2 ] \
|
|
|| [ \( $(GLIBC_VERSION_MAJOR) -eq 2 \) -a \( $(GLIBC_VERSION_MINOR) -lt 17 \) ] ; \
|
|
then echo "-lrt" ; fi )
|
|
|
|
TESTUPNPDESCGENOBJS = testupnpdescgen.o upnpdescgen.o
|
|
|
|
EXECUTABLES = miniupnpd testupnpdescgen testgetifstats \
|
|
testupnppermissions miniupnpdctl testgetifaddr \
|
|
testgetroute testasyncsendto testportinuse \
|
|
testssdppktgen testminissdp
|
|
|
|
.PHONY: all clean install depend genuuid dox
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
config.mk: configure
|
|
./configure $(CONFIG_OPTIONS)
|
|
|
|
clean:
|
|
$(RM) config.h
|
|
$(RM) $(ALLOBJS)
|
|
$(RM) $(EXECUTABLES)
|
|
$(RM) testupnpdescgen.o testgetifstats.o
|
|
$(RM) testupnppermissions.o testgetifaddr.o
|
|
$(RM) testgetroute.o testasyncsendto.o
|
|
$(RM) testportinuse.o
|
|
$(RM) testminissdp.o
|
|
$(RM) testssdppktgen.o
|
|
$(RM) miniupnpdctl.o
|
|
$(RM) validateupnppermissions validategetifaddr validatessdppktgen
|
|
$(RM) -r dox/
|
|
|
|
install: miniupnpd miniupnpd.8 miniupnpd.conf genuuid \
|
|
netfilter/iptables_init.sh netfilter/iptables_removeall.sh \
|
|
netfilter/ip6tables_init.sh netfilter/ip6tables_removeall.sh \
|
|
netfilter/miniupnpd_functions.sh \
|
|
linux/miniupnpd.init.d.script
|
|
$(STRIP) miniupnpd
|
|
$(INSTALL) -d $(DESTDIR)$(SBININSTALLDIR)
|
|
$(INSTALL) miniupnpd $(DESTDIR)$(SBININSTALLDIR)
|
|
$(INSTALL) -d $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) netfilter/iptables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) netfilter/iptables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) netfilter/ip6tables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) netfilter/ip6tables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) netfilter/miniupnpd_functions.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) --mode=0644 -b miniupnpd.conf $(DESTDIR)$(ETCINSTALLDIR)
|
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/etc/init.d
|
|
$(INSTALL) linux/miniupnpd.init.d.script $(DESTDIR)$(PREFIX)/etc/init.d/miniupnpd
|
|
$(INSTALL) -d $(DESTDIR)$(MANINSTALLDIR)
|
|
$(INSTALL) --mode=0644 miniupnpd.8 $(DESTDIR)$(MANINSTALLDIR)
|
|
gzip -f $(DESTDIR)$(MANINSTALLDIR)/miniupnpd.8
|
|
|
|
# genuuid is using the uuidgen CLI tool which is part of libuuid
|
|
# from the e2fsprogs
|
|
# 'cat /proc/sys/kernel/random/uuid' could be also used
|
|
genuuid:
|
|
ifeq ($(TARGET_OPENWRT),)
|
|
sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`(genuuid||uuidgen||uuid) 2>/dev/null`/" miniupnpd.conf
|
|
else
|
|
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
|
|
endif
|
|
|
|
check: validateupnppermissions validategetifaddr validatessdppktgen \
|
|
validateversion
|
|
|
|
validateversion: miniupnpd VERSION
|
|
./miniupnpd --version
|
|
[ "`./miniupnpd --version | head -1 | cut -d' ' -f-2`" = "miniupnpd `cat VERSION`" ]
|
|
touch $@
|
|
|
|
validateupnppermissions: testupnppermissions testupnppermissions.sh
|
|
./testupnppermissions.sh
|
|
touch $@
|
|
|
|
validategetifaddr: testgetifaddr testgetifaddr.sh
|
|
./testgetifaddr.sh
|
|
touch $@
|
|
|
|
validatessdppktgen: testssdppktgen
|
|
./testssdppktgen
|
|
touch $@
|
|
|
|
miniupnpd: $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
|
|
|
|
testupnpdescgen: $(TESTUPNPDESCGENOBJS)
|
|
|
|
testgetifstats: testgetifstats.o linux/getifstats.o
|
|
|
|
testupnppermissions: testupnppermissions.o upnppermissions.o
|
|
|
|
testgetifaddr: testgetifaddr.o getifaddr.o
|
|
|
|
testgetroute: testgetroute.o linux/getroute.o upnputils.o
|
|
|
|
testssdppktgen: testssdppktgen.o
|
|
|
|
testasyncsendto: testasyncsendto.o asyncsendto.o upnputils.o \
|
|
linux/getroute.o
|
|
|
|
testportinuse: testportinuse.o portinuse.o getifaddr.o \
|
|
netfilter/iptcrdr.o
|
|
|
|
testminissdp: testminissdp.o minissdp.o upnputils.o upnpglobalvars.o \
|
|
asyncsendto.o linux/getroute.o
|
|
|
|
|
|
miniupnpdctl: miniupnpdctl.o
|
|
|
|
config.h: configure VERSION
|
|
./configure $(CONFIG_OPTIONS)
|
|
|
|
depend: config.h
|
|
makedepend -f$(MAKEFILE_LIST) -Y \
|
|
$(ALLOBJS:.o=.c) $(TESTUPNPDESCGENOBJS:.o=.c) \
|
|
testgetifstats.c testupnppermissions.c testgetifaddr.c \
|
|
testgetroute.c testasyncsendto.c testportinuse.c \
|
|
miniupnpdctl.c testssdppktgen.c 2>/dev/null
|
|
|
|
dox: miniupnpd.doxyconf
|
|
$(DOXYGEN) $<
|
|
|
|
# DO NOT DELETE
|
|
|
|
miniupnpd.o: config.h macros.h upnpglobalvars.h upnppermissions.h
|
|
miniupnpd.o: miniupnpdtypes.h upnphttp.h upnpdescgen.h miniupnpdpath.h
|
|
miniupnpd.o: getifaddr.h upnpsoap.h options.h minissdp.h upnpredirect.h
|
|
miniupnpd.o: upnppinhole.h daemonize.h upnpevents.h asyncsendto.h natpmp.h
|
|
miniupnpd.o: pcpserver.h commonrdr.h upnputils.h ifacewatcher.h
|
|
upnphttp.o: config.h upnphttp.h upnpdescgen.h miniupnpdpath.h upnpsoap.h
|
|
upnphttp.o: upnpevents.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
upnphttp.o: miniupnpdtypes.h
|
|
upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
|
|
upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
|
|
upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
|
|
upnpsoap.o: macros.h config.h upnpglobalvars.h upnppermissions.h
|
|
upnpsoap.o: miniupnpdtypes.h upnphttp.h upnpsoap.h upnpreplyparse.h
|
|
upnpsoap.o: upnpredirect.h upnppinhole.h getifaddr.h getifstats.h
|
|
upnpsoap.o: getconnstatus.h upnpurns.h
|
|
upnpreplyparse.o: upnpreplyparse.h minixml.h
|
|
minixml.o: minixml.h
|
|
portinuse.o: macros.h config.h upnpglobalvars.h upnppermissions.h
|
|
portinuse.o: miniupnpdtypes.h getifaddr.h portinuse.h netfilter/iptcrdr.h
|
|
portinuse.o: commonrdr.h
|
|
upnpredirect.o: macros.h config.h upnpredirect.h upnpglobalvars.h
|
|
upnpredirect.o: upnppermissions.h miniupnpdtypes.h upnpevents.h portinuse.h
|
|
upnpredirect.o: netfilter/iptcrdr.h commonrdr.h
|
|
getifaddr.o: config.h getifaddr.h
|
|
daemonize.o: daemonize.h config.h
|
|
upnpglobalvars.o: config.h upnpglobalvars.h upnppermissions.h
|
|
upnpglobalvars.o: miniupnpdtypes.h upnpdescstrings.h
|
|
options.o: config.h options.h upnppermissions.h upnpglobalvars.h
|
|
options.o: miniupnpdtypes.h
|
|
upnppermissions.o: config.h upnppermissions.h
|
|
minissdp.o: config.h upnpdescstrings.h miniupnpdpath.h upnphttp.h
|
|
minissdp.o: upnpglobalvars.h upnppermissions.h miniupnpdtypes.h minissdp.h
|
|
minissdp.o: upnputils.h getroute.h asyncsendto.h codelength.h macros.h
|
|
natpmp.o: macros.h config.h natpmp.h upnpglobalvars.h upnppermissions.h
|
|
natpmp.o: miniupnpdtypes.h getifaddr.h upnpredirect.h commonrdr.h upnputils.h
|
|
natpmp.o: portinuse.h asyncsendto.h
|
|
pcpserver.o: config.h pcpserver.h macros.h upnpglobalvars.h upnppermissions.h
|
|
pcpserver.o: miniupnpdtypes.h pcplearndscp.h upnpredirect.h commonrdr.h
|
|
pcpserver.o: getifaddr.h asyncsendto.h pcp_msg_struct.h netfilter/iptcrdr.h
|
|
pcpserver.o: commonrdr.h
|
|
upnpevents.o: config.h upnpevents.h miniupnpdpath.h upnpglobalvars.h
|
|
upnpevents.o: upnppermissions.h miniupnpdtypes.h upnpdescgen.h upnputils.h
|
|
upnputils.o: config.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
upnputils.o: miniupnpdtypes.h getroute.h
|
|
getconnstatus.o: getconnstatus.h getifaddr.h
|
|
upnppinhole.o: macros.h config.h upnpredirect.h upnpglobalvars.h
|
|
upnppinhole.o: upnppermissions.h miniupnpdtypes.h upnpevents.h upnppinhole.h
|
|
upnppinhole.o: netfilter/iptpinhole.h
|
|
pcplearndscp.o: config.h upnpglobalvars.h upnppermissions.h miniupnpdtypes.h
|
|
pcplearndscp.o: pcplearndscp.h
|
|
asyncsendto.o: asyncsendto.h upnputils.h
|
|
linux/getifstats.o: config.h getifstats.h
|
|
linux/ifacewatcher.o: config.h ifacewatcher.h config.h minissdp.h
|
|
linux/ifacewatcher.o: miniupnpdtypes.h getifaddr.h upnpglobalvars.h
|
|
linux/ifacewatcher.o: upnppermissions.h natpmp.h
|
|
linux/getroute.o: getroute.h upnputils.h
|
|
netfilter/iptcrdr.o: macros.h config.h netfilter/iptcrdr.h commonrdr.h
|
|
netfilter/iptcrdr.o: config.h upnpglobalvars.h upnppermissions.h
|
|
netfilter/iptcrdr.o: miniupnpdtypes.h
|
|
netfilter/iptpinhole.o: config.h netfilter/iptpinhole.h upnpglobalvars.h
|
|
netfilter/iptpinhole.o: upnppermissions.h config.h miniupnpdtypes.h
|
|
testupnpdescgen.o: macros.h config.h upnpdescgen.h upnpdescstrings.h
|
|
testupnpdescgen.o: getifaddr.h
|
|
upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
|
|
upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
|
|
upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
|
|
testgetifstats.o: getifstats.h
|
|
testupnppermissions.o: upnppermissions.h config.h
|
|
testgetifaddr.o: config.h getifaddr.h
|
|
testgetroute.o: getroute.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
testgetroute.o: config.h miniupnpdtypes.h
|
|
testasyncsendto.o: miniupnpdtypes.h config.h upnputils.h asyncsendto.h
|
|
testportinuse.o: macros.h config.h portinuse.h
|
|
miniupnpdctl.o: macros.h
|
|
testssdppktgen.o: macros.h config.h miniupnpdpath.h upnphttp.h
|
|
upnpstun.o: config.h upnpstun.h netfilter/iptcrdr.h
|