2015-07-02 16:13:56 +00:00
|
|
|
#
|
|
|
|
# Makefile for ZeroTier One on Linux
|
|
|
|
#
|
|
|
|
# This is confirmed to work on distributions newer than CentOS 6 (the
|
|
|
|
# one used for reference builds) and on 32 and 64 bit x86 and ARM
|
|
|
|
# machines. It should also work on other 'normal' machines and recent
|
|
|
|
# distributions. Editing might be required for tiny devices or weird
|
|
|
|
# distros.
|
|
|
|
#
|
|
|
|
# Targets
|
|
|
|
# one: zerotier-one and symlinks (cli and idtool)
|
2016-04-19 16:35:32 +00:00
|
|
|
# doc: builds manpages, requires rst2man somewhere in PATH
|
2015-07-02 16:13:56 +00:00
|
|
|
# all: builds 'one'
|
|
|
|
# selftest: zerotier-selftest
|
|
|
|
# debug: builds 'one' and 'selftest' with tracing and debug flags
|
2016-04-19 16:35:32 +00:00
|
|
|
# installer: builds installers and packages (RPM/DEB/etc.) if possible
|
|
|
|
# official: cleans and then builds 'one', 'installer', and 'doc'
|
2015-07-02 16:13:56 +00:00
|
|
|
# clean: removes all built files, objects, other trash
|
|
|
|
#
|
|
|
|
|
|
|
|
# Automagically pick clang or gcc, with preference for clang
|
2015-07-23 20:05:18 +00:00
|
|
|
# This is only done if we have not overridden these with an environment or CLI variable
|
|
|
|
ifeq ($(origin CC),default)
|
|
|
|
CC=$(shell if [ -e /usr/bin/clang ]; then echo clang; else echo gcc; fi)
|
|
|
|
endif
|
|
|
|
ifeq ($(origin CXX),default)
|
|
|
|
CXX=$(shell if [ -e /usr/bin/clang++ ]; then echo clang++; else echo g++; fi)
|
|
|
|
endif
|
|
|
|
|
2015-11-23 18:46:52 +00:00
|
|
|
#UNAME_M=$(shell $(CC) -dumpmachine | cut -d '-' -f 1)
|
2015-07-28 22:37:18 +00:00
|
|
|
|
2015-12-04 21:19:31 +00:00
|
|
|
INCLUDES?=
|
2016-06-08 18:21:01 +00:00
|
|
|
DEFS?=-D_FORTIFY_SOURCE=2
|
2015-07-04 18:32:26 +00:00
|
|
|
LDLIBS?=
|
2016-06-08 00:11:09 +00:00
|
|
|
DESTDIR?=
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2014-10-29 23:32:24 +00:00
|
|
|
include objects.mk
|
|
|
|
|
2016-06-02 04:55:48 +00:00
|
|
|
# On Linux we auto-detect the presence of some libraries
|
|
|
|
ifeq ($(wildcard /usr/include/lz4.h),)
|
|
|
|
OBJS+=ext/lz4/lz4.o
|
|
|
|
else
|
|
|
|
LDLIBS+=-llz4
|
|
|
|
endif
|
|
|
|
ifeq ($(wildcard /usr/include/http_parser.h),)
|
|
|
|
OBJS+=ext/http-parser/http_parser.o
|
|
|
|
else
|
|
|
|
LDLIBS+=-lhttp_parser
|
2016-06-08 19:49:07 +00:00
|
|
|
DEFS+=-DZT_USE_SYSTEM_HTTP_PARSER
|
2016-06-02 04:55:48 +00:00
|
|
|
endif
|
2016-06-02 05:26:58 +00:00
|
|
|
ifeq ($(wildcard /usr/include/json-parser/json.h),)
|
|
|
|
OBJS+=ext/json-parser/json.o
|
|
|
|
else
|
|
|
|
LDLIBS+=-ljsonparser
|
|
|
|
endif
|
2016-06-02 04:55:48 +00:00
|
|
|
|
2014-01-07 22:48:56 +00:00
|
|
|
ifeq ($(ZT_OFFICIAL_RELEASE),1)
|
2015-09-02 23:15:22 +00:00
|
|
|
DEFS+=-DZT_OFFICIAL_RELEASE
|
2015-07-28 22:37:18 +00:00
|
|
|
ZT_USE_MINIUPNPC=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ZT_USE_MINIUPNPC),1)
|
2016-06-03 00:04:15 +00:00
|
|
|
DEFS+=-DZT_USE_MINIUPNPC -DMINIUPNP_STATICLIB -DMINIUPNPC_SET_SOCKET_TIMEOUT -DMINIUPNPC_GET_SRC_ADDR -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -DOS_STRING=\"Linux\" -DMINIUPNPC_VERSION_STRING=\"2.0\" -DUPNP_VERSION_STRING=\"UPnP/1.1\" -DENABLE_STRNATPMPERR
|
2016-06-02 05:26:58 +00:00
|
|
|
OBJS+=osdep/PortMapper.o
|
2016-06-02 05:06:43 +00:00
|
|
|
|
2016-06-02 05:26:58 +00:00
|
|
|
#ifeq ($(wildcard /usr/include/miniupnpc/miniupnpc.h),)
|
|
|
|
OBJS+=ext/miniupnpc/connecthostport.o ext/miniupnpc/igd_desc_parse.o ext/miniupnpc/minisoap.o ext/miniupnpc/minissdpc.o ext/miniupnpc/miniupnpc.o ext/miniupnpc/miniwget.o ext/miniupnpc/minixml.o ext/miniupnpc/portlistingparse.o ext/miniupnpc/receivedata.o ext/miniupnpc/upnpcommands.o ext/miniupnpc/upnpdev.o ext/miniupnpc/upnperrors.o ext/miniupnpc/upnpreplyparse.o
|
|
|
|
#else
|
|
|
|
# LDLIBS+=-lminiupnpc
|
|
|
|
#endif
|
2016-06-02 05:06:43 +00:00
|
|
|
|
|
|
|
ifeq ($(wildcard /usr/include/natpmp.h),)
|
|
|
|
OBJS+=ext/libnatpmp/natpmp.o ext/libnatpmp/getgateway.o
|
|
|
|
else
|
|
|
|
LDLIBS+=-lnatpmp
|
|
|
|
endif
|
2014-01-07 22:48:56 +00:00
|
|
|
endif
|
2013-12-11 21:14:10 +00:00
|
|
|
|
2015-05-28 03:13:23 +00:00
|
|
|
ifeq ($(ZT_ENABLE_NETWORK_CONTROLLER),1)
|
2015-11-23 18:46:52 +00:00
|
|
|
DEFS+=-DZT_ENABLE_NETWORK_CONTROLLER
|
|
|
|
LDLIBS+=-L/usr/local/lib -lsqlite3
|
|
|
|
OBJS+=controller/SqliteNetworkController.o
|
2015-05-28 03:13:23 +00:00
|
|
|
endif
|
|
|
|
|
2015-11-17 00:22:41 +00:00
|
|
|
ifeq ($(ZT_ENABLE_CLUSTER),1)
|
|
|
|
DEFS+=-DZT_ENABLE_CLUSTER
|
2015-05-28 03:13:23 +00:00
|
|
|
endif
|
|
|
|
|
2014-08-18 14:07:03 +00:00
|
|
|
ifeq ($(ZT_DEBUG),1)
|
2015-09-02 23:15:22 +00:00
|
|
|
DEFS+=-DZT_TRACE
|
2015-10-08 21:55:58 +00:00
|
|
|
CFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS)
|
|
|
|
CXXFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS)
|
2016-06-08 18:21:01 +00:00
|
|
|
LDFLAGS=
|
2015-11-30 21:17:43 +00:00
|
|
|
STRIP?=echo
|
2014-10-12 18:42:49 +00:00
|
|
|
# The following line enables optimization for the crypto code, since
|
2015-07-02 16:13:56 +00:00
|
|
|
# C25519 in particular is almost UNUSABLE in -O0 even on a 3ghz box!
|
2014-10-14 17:22:27 +00:00
|
|
|
ext/lz4/lz4.o node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o: CFLAGS = -Wall -O2 -g -pthread $(INCLUDES) $(DEFS)
|
2014-08-18 14:07:03 +00:00
|
|
|
else
|
2016-06-08 18:21:01 +00:00
|
|
|
CFLAGS?=-O3 -fstack-protector-strong
|
2015-07-03 18:18:19 +00:00
|
|
|
CFLAGS+=-Wall -fPIE -fvisibility=hidden -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
2016-06-08 18:21:01 +00:00
|
|
|
CXXFLAGS?=-O3 -fstack-protector-strong
|
2015-09-11 18:00:42 +00:00
|
|
|
CXXFLAGS+=-Wall -Wreorder -fPIE -fvisibility=hidden -fno-rtti -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
2016-06-08 18:21:01 +00:00
|
|
|
LDFLAGS=-pie -Wl,-z,relro,-z,now
|
2015-11-30 21:17:43 +00:00
|
|
|
STRIP?=strip
|
2015-10-16 22:15:10 +00:00
|
|
|
STRIP+=--strip-all
|
2014-08-18 14:07:03 +00:00
|
|
|
endif
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2015-11-03 19:20:12 +00:00
|
|
|
ifeq ($(ZT_TRACE),1)
|
2015-11-23 18:46:52 +00:00
|
|
|
DEFS+=-DZT_TRACE
|
2015-11-03 19:20:12 +00:00
|
|
|
endif
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-10-18 20:51:05 +00:00
|
|
|
# Uncomment for gprof profile build
|
|
|
|
#CFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)
|
2015-07-02 16:13:56 +00:00
|
|
|
#CXXFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)
|
2014-03-11 18:50:04 +00:00
|
|
|
#LDFLAGS=
|
2013-10-18 20:51:05 +00:00
|
|
|
#STRIP=echo
|
|
|
|
|
2016-06-08 17:13:31 +00:00
|
|
|
all: one manpages
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2015-12-04 21:19:31 +00:00
|
|
|
one: $(OBJS) service/OneService.o one.o osdep/LinuxEthernetTap.o
|
|
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o zerotier-one $(OBJS) service/OneService.o one.o osdep/LinuxEthernetTap.o $(LDLIBS)
|
2013-07-04 20:56:19 +00:00
|
|
|
$(STRIP) zerotier-one
|
2013-12-04 22:44:28 +00:00
|
|
|
ln -sf zerotier-one zerotier-idtool
|
2015-04-16 21:55:36 +00:00
|
|
|
ln -sf zerotier-one zerotier-cli
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2016-01-12 17:46:49 +00:00
|
|
|
netcon: $(OBJS)
|
2015-12-15 22:50:54 +00:00
|
|
|
rm -f *.o
|
2015-12-04 21:19:31 +00:00
|
|
|
# Need to selectively rebuild one.cpp and OneService.cpp with ZT_SERVICE_NETCON and ZT_ONE_NO_ROOT_CHECK defined, and also NetconEthernetTap
|
2016-01-12 17:46:49 +00:00
|
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -DZT_SERVICE_NETCON -DZT_ONE_NO_ROOT_CHECK -Iext/lwip/src/include -Iext/lwip/src/include/ipv4 -Iext/lwip/src/include/ipv6 -o zerotier-netcon-service $(OBJS) service/OneService.cpp netcon/NetconEthernetTap.cpp one.cpp -x c netcon/RPC.c $(LDLIBS) -ldl
|
2015-12-04 21:19:31 +00:00
|
|
|
# Build netcon/liblwip.so which must be placed in ZT home for zerotier-netcon-service to work
|
|
|
|
cd netcon ; make -f make-liblwip.mk
|
|
|
|
# Use gcc not clang to build standalone intercept library since gcc is typically used for libc and we want to ensure maximal ABI compatibility
|
2016-01-12 17:46:49 +00:00
|
|
|
cd netcon ; gcc -g -O2 -Wall -std=c99 -fPIC -DVERBOSE -D_GNU_SOURCE -DNETCON_INTERCEPT -I. -nostdlib -shared -o libzerotierintercept.so Intercept.c RPC.c -ldl
|
2015-12-18 21:13:47 +00:00
|
|
|
cp netcon/libzerotierintercept.so libzerotierintercept.so
|
2015-12-09 01:35:37 +00:00
|
|
|
ln -sf zerotier-netcon-service zerotier-cli
|
|
|
|
ln -sf zerotier-netcon-service zerotier-idtool
|
2015-12-04 21:19:31 +00:00
|
|
|
|
2014-03-11 18:50:04 +00:00
|
|
|
selftest: $(OBJS) selftest.o
|
2015-07-04 18:32:26 +00:00
|
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o zerotier-selftest selftest.o $(OBJS) $(LDLIBS)
|
2013-07-04 20:56:19 +00:00
|
|
|
$(STRIP) zerotier-selftest
|
|
|
|
|
2016-06-08 17:13:31 +00:00
|
|
|
manpages: FORCE
|
|
|
|
cd doc ; ./build.sh
|
|
|
|
|
2015-12-09 02:17:03 +00:00
|
|
|
clean: FORCE
|
2016-06-08 18:21:01 +00:00
|
|
|
rm -rf *.so *.o netcon/*.a node/*.o controller/*.o osdep/*.o service/*.o ext/http-parser/*.o ext/lz4/*.o ext/json-parser/*.o ext/miniupnpc/*.o ext/libnatpmp/*.o $(OBJS) zerotier-one zerotier-idtool zerotier-cli zerotier-selftest zerotier-netcon-service build-* ZeroTierOneInstaller-* *.deb *.rpm .depend netcon/.depend doc/*.1 doc/*.2 doc/*.8 debian/zerotier-one* debian/files
|
2015-12-07 13:37:14 +00:00
|
|
|
find netcon -type f \( -name '*.o' -o -name '*.so' -o -name '*.1.0' -o -name 'zerotier-one' -o -name 'zerotier-cli' -o -name 'zerotier-netcon-service' \) -delete
|
2015-11-24 00:02:39 +00:00
|
|
|
find netcon/docker-test -name "zerotier-intercept" -type f -delete
|
2014-08-18 14:07:03 +00:00
|
|
|
|
2016-06-08 17:13:31 +00:00
|
|
|
distclean: clean
|
|
|
|
rm -rf doc/node_modules
|
|
|
|
|
2014-08-18 14:07:03 +00:00
|
|
|
debug: FORCE
|
2015-07-02 16:13:56 +00:00
|
|
|
make ZT_DEBUG=1 one
|
|
|
|
make ZT_DEBUG=1 selftest
|
2013-11-06 17:06:42 +00:00
|
|
|
|
2016-06-08 00:11:09 +00:00
|
|
|
install: FORCE
|
|
|
|
mkdir -p $(DESTDIR)/usr/sbin
|
|
|
|
rm -f $(DESTDIR)/usr/sbin/zerotier-one
|
|
|
|
cp -f zerotier-one $(DESTDIR)/usr/sbin/zerotier-one
|
|
|
|
mkdir -p $(DESTDIR)/usr/bin
|
|
|
|
rm -f $(DESTDIR)/usr/bin/zerotier-cli
|
|
|
|
rm -f $(DESTDIR)/usr/bin/zerotier-idtool
|
|
|
|
ln -s $(DESTDIR)/usr/sbin/zerotier-one $(DESTDIR)/usr/bin/zerotier-cli
|
|
|
|
ln -s $(DESTDIR)/usr/sbin/zerotier-one $(DESTDIR)/usr/bin/zerotier-idtool
|
|
|
|
mkdir -p $(DESTDIR)/var/lib/zerotier-one
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-one
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-cli
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-idtool
|
|
|
|
ln -s $(DESTDIR)/usr/sbin/zerotier-one $(DESTDIR)/var/lib/zerotier-one/zerotier-one
|
|
|
|
ln -s $(DESTDIR)/usr/sbin/zerotier-one $(DESTDIR)/var/lib/zerotier-one/zerotier-cli
|
|
|
|
ln -s $(DESTDIR)/usr/sbin/zerotier-one $(DESTDIR)/var/lib/zerotier-one/zerotier-idtool
|
2016-06-08 17:19:46 +00:00
|
|
|
mkdir -p $(DESTDIR)/usr/share/man/man8
|
|
|
|
rm -f $(DESTDIR)/usr/share/man/man8/zerotier-one.8.gz
|
|
|
|
cat doc/zerotier-one.8 | gzip -9 >$(DESTDIR)/usr/share/man/man8/zerotier-one.8.gz
|
|
|
|
mkdir -p $(DESTDIR)/usr/share/man/man1
|
|
|
|
rm -f $(DESTDIR)/usr/share/man/man1/zerotier-idtool.1.gz
|
|
|
|
rm -f $(DESTDIR)/usr/share/man/man1/zerotier-cli.1.gz
|
|
|
|
cat doc/zerotier-cli.1 | gzip -9 >$(DESTDIR)/usr/share/man/man1/zerotier-cli.1.gz
|
|
|
|
cat doc/zerotier-idtool.1 | gzip -9 >$(DESTDIR)/usr/share/man/man1/zerotier-idtool.1.gz
|
2016-06-08 19:49:07 +00:00
|
|
|
mkdir -p $(DESTDIR)/usr/lib/systemd/system
|
|
|
|
rm -f $(DESTDIR)/usr/lib/systemd/system/zerotier-one.service
|
|
|
|
cp -f ext/installfiles/linux/systemd/zerotier-one.service $(DESTDIR)/usr/lib/systemd/system
|
2016-06-08 00:11:09 +00:00
|
|
|
|
|
|
|
uninstall: FORCE
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-one
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-cli
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-idtool
|
|
|
|
rm -f $(DESTDIR)/usr/bin/zerotier-cli
|
|
|
|
rm -f $(DESTDIR)/usr/bin/zerotier-idtool
|
|
|
|
rm -f $(DESTDIR)/usr/sbin/zerotier-one
|
|
|
|
rm -rf $(DESTDIR)/var/lib/zerotier-one/iddb.d
|
|
|
|
rm -rf $(DESTDIR)/var/lib/zerotier-one/updates.d
|
|
|
|
rm -rf $(DESTDIR)/var/lib/zerotier-one/networks.d
|
|
|
|
rm -f $(DESTDIR)/var/lib/zerotier-one/zerotier-one.port
|
2016-06-08 17:19:46 +00:00
|
|
|
rm -f $(DESTDIR)/usr/share/man/man8/zerotier-one.8.gz
|
|
|
|
rm -f $(DESTDIR)/usr/share/man/man1/zerotier-idtool.1.gz
|
|
|
|
rm -f $(DESTDIR)/usr/share/man/man1/zerotier-cli.1.gz
|
2016-06-08 19:49:07 +00:00
|
|
|
rm -f $(DESTDIR)/usr/lib/systemd/system/zerotier-one.service
|
2016-06-08 00:11:09 +00:00
|
|
|
|
2016-06-08 18:21:01 +00:00
|
|
|
debian: distclean
|
|
|
|
debuild -I -i -us -uc
|
|
|
|
|
2013-11-06 17:06:42 +00:00
|
|
|
FORCE:
|