2019-09-05 18:02:16 +00:00
# Automagically pick CLANG or RH/CentOS newer GCC if present
2015-07-23 20:05:18 +00:00
# This is only done if we have not overridden these with an environment or CLI variable
i f e q ( $( origin CC ) , d e f a u l t )
2019-08-06 21:46:41 +00:00
CC:= $( shell if [ -e /usr/bin/clang ] ; then echo clang; else echo gcc; fi )
CC:= $( shell if [ -e /opt/rh/devtoolset-8/root/usr/bin/gcc ] ; then echo /opt/rh/devtoolset-8/root/usr/bin/gcc; else echo $( CC) ; fi )
2015-07-23 20:05:18 +00:00
e n d i f
i f e q ( $( origin CXX ) , d e f a u l t )
2019-08-06 21:46:41 +00:00
CXX:= $( shell if [ -e /usr/bin/clang++ ] ; then echo clang++; else echo g++; fi )
CXX:= $( shell if [ -e /opt/rh/devtoolset-8/root/usr/bin/g++ ] ; then echo /opt/rh/devtoolset-8/root/usr/bin/g++; else echo $( CXX) ; fi )
2015-07-23 20:05:18 +00:00
e n d i f
2015-12-04 21:19:31 +00:00
INCLUDES ?=
2017-04-27 07:59:36 +00:00
DEFS ?=
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
i n c l u d e o b j e c t s . m k
2017-05-08 21:36:55 +00:00
ONE_OBJS += osdep/LinuxEthernetTap.o
2018-05-24 22:22:11 +00:00
ONE_OBJS += osdep/LinuxNetLink.o
2018-09-28 17:55:39 +00:00
# for central controller builds
TIMESTAMP = $( shell date +"%Y%m%d%H%M" )
2017-01-12 21:18:11 +00:00
# Auto-detect miniupnpc and nat-pmp as well and use system libs if present,
# otherwise build into binary as done on Mac and Windows.
2017-05-08 21:36:55 +00:00
ONE_OBJS += osdep/PortMapper.o
2017-11-03 20:59:36 +00:00
o v e r r i d e DEFS += -DZT_USE_MINIUPNPC
2017-11-09 16:35:46 +00:00
MINIUPNPC_IS_NEW_ENOUGH = $( shell grep -sqr '.*define.*MINIUPNPC_VERSION.*"2..*"' /usr/include/miniupnpc/miniupnpc.h && echo 1)
#MINIUPNPC_IS_NEW_ENOUGH=$(shell grep -sqr '.*define.*MINIUPNPC_VERSION.*"2.."' /usr/include/miniupnpc/miniupnpc.h && echo 1)
2017-01-12 21:18:11 +00:00
i f e q ( $( MINIUPNPC_IS_NEW_ENOUGH ) , 1 )
2017-11-03 20:59:36 +00:00
override DEFS += -DZT_USE_SYSTEM_MINIUPNPC
2017-01-12 21:18:11 +00:00
LDLIBS += -lminiupnpc
e l s e
2017-11-03 20:59:36 +00:00
override DEFS += -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
2017-05-08 21:36:55 +00:00
ONE_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
2017-01-12 21:18:11 +00:00
e n d i f
i f e q ( $( wildcard /usr /include /natpmp .h ) , )
2017-05-08 21:36:55 +00:00
ONE_OBJS += ext/libnatpmp/natpmp.o ext/libnatpmp/getgateway.o
2017-01-12 21:18:11 +00:00
e l s e
LDLIBS += -lnatpmp
2017-11-03 20:59:36 +00:00
override DEFS += -DZT_USE_SYSTEM_NATPMP
2014-01-07 22:48:56 +00:00
e n d i f
2013-12-11 21:14:10 +00:00
2017-05-08 21:36:55 +00:00
# Use bundled http-parser since distribution versions are NOT API-stable or compatible!
# Trying to use dynamically linked libhttp-parser causes tons of compatibility problems.
ONE_OBJS += ext/http-parser/http_parser.o
2018-07-11 23:32:49 +00:00
# Build with address sanitization library for advanced debugging (clang)
i f e q ( $( ZT_SANITIZE ) , 1 )
DEFS += -fsanitize= address -DASAN_OPTIONS= symbolize = 1
2016-06-27 16:25:34 +00:00
e n d i f
2018-05-31 00:45:29 +00:00
i f e q ( $( ZT_DEBUG_TRACE ) , 1 )
DEFS += -DZT_DEBUG_TRACE
e n d i f
2016-06-27 16:25:34 +00:00
i f e q ( $( ZT_TRACE ) , 1 )
2018-07-11 23:32:49 +00:00
DEFS += -DZT_TRACE
2016-06-27 16:25:34 +00:00
e n d i f
2016-11-15 19:50:53 +00:00
i f e q ( $( ZT_RULES_ENGINE_DEBUGGING ) , 1 )
2017-11-03 20:59:36 +00:00
override DEFS += -DZT_RULES_ENGINE_DEBUGGING
2016-11-15 19:50:53 +00:00
e n d i f
2017-12-14 21:27:49 +00:00
# Build with address sanitization library for advanced debugging (clang)
i f e q ( $( ZT_SANITIZE ) , 1 )
SANFLAGS += -fsanitize= address -DASAN_OPTIONS= symbolize = 1
e n d i f
2014-08-18 14:07:03 +00:00
i f e q ( $( ZT_DEBUG ) , 1 )
2018-07-03 19:51:41 +00:00
override CFLAGS += -Wall -Wno-deprecated -g -pthread $( INCLUDES) $( DEFS)
override CXXFLAGS += -Wall -Wno-deprecated -g -std= c++11 -pthread $( INCLUDES) $( DEFS)
2017-05-08 21:46:45 +00:00
ZT_TRACE = 1
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!
2017-04-27 07:59:36 +00:00
node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o : CXXFLAGS =-Wall -O 2 -g -pthread $( INCLUDES ) $( DEFS )
2014-08-18 14:07:03 +00:00
e l s e
2018-04-25 13:34:34 +00:00
CFLAGS?= -O3 -fstack-protector -fPIE
2018-03-13 13:51:17 +00:00
override CFLAGS += -Wall -Wno-deprecated -pthread $( INCLUDES) -DNDEBUG $( DEFS)
2018-04-25 13:34:34 +00:00
CXXFLAGS?= -O3 -fstack-protector -fPIE
2018-03-13 13:51:17 +00:00
override CXXFLAGS += -Wall -Wno-deprecated -std= c++11 -pthread $( INCLUDES) -DNDEBUG $( DEFS)
2018-04-25 13:34:34 +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
e n d i f
2013-07-04 20:56:19 +00:00
2018-05-04 19:09:04 +00:00
i f e q ( $( ZT_QNAP ) , 1 )
override DEFS += -D__QNAP__
e n d i f
i f e q ( $( ZT_SYNOLOGY ) , 1 )
2018-05-04 21:31:34 +00:00
override CFLAGS += -fPIC
2018-05-04 20:03:52 +00:00
override CXXFLAGS += -fPIC
2018-05-09 20:51:32 +00:00
override DEFS += -D__SYNOLOGY__
2018-05-04 19:09:04 +00:00
e n d i f
2019-07-23 20:33:25 +00:00
i f e q ( $( ZT_DISABLE_COMPRESSION ) , 1 )
override DEFS += -DZT_DISABLE_COMPRESSION
e n d i f
2017-05-08 21:46:45 +00:00
i f e q ( $( ZT_TRACE ) , 1 )
override DEFS += -DZT_TRACE
e n d i f
2017-04-26 15:42:49 +00:00
i f e q ( $( ZT_USE_TEST_TAP ) , 1 )
override DEFS += -DZT_USE_TEST_TAP
e n d i f
2018-02-16 23:08:04 +00:00
i f e q ( $( ZT_VAULT_SUPPORT ) , 1 )
override DEFS += -DZT_VAULT_SUPPORT= 1
override LDLIBS += -lcurl
e n d i f
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
2017-01-11 22:37:31 +00:00
# Determine system build architecture from compiler target
CC_MACH = $( shell $( CC) -dumpmachine | cut -d '-' -f 1)
2017-04-18 16:14:33 +00:00
ZT_ARCHITECTURE = 999
2017-01-11 22:37:31 +00:00
i f e q ( $( CC_MACH ) , x 8 6 _ 6 4 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 2
2018-04-20 18:35:50 +00:00
ZT_USE_X64_ASM_SALSA = 1
2018-04-25 13:34:34 +00:00
ZT_USE_X64_ASM_ED25519 = 1
2017-01-11 22:37:31 +00:00
e n d i f
i f e q ( $( CC_MACH ) , a m d 6 4 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 2
2018-04-20 18:35:50 +00:00
ZT_USE_X64_ASM_SALSA = 1
2018-04-25 13:34:34 +00:00
ZT_USE_X64_ASM_ED25519 = 1
2017-01-11 22:37:31 +00:00
e n d i f
2017-08-06 09:06:00 +00:00
i f e q ( $( CC_MACH ) , p o w e r p c 6 4 l e )
2017-08-18 21:40:10 +00:00
ZT_ARCHITECTURE = 8
2018-05-09 20:51:32 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
e n d i f
i f e q ( $( CC_MACH ) , p o w e r p c )
ZT_ARCHITECTURE = 8
override DEFS += -DZT_NO_TYPE_PUNNING
override DEFS += -DZT_NO_CAPABILITIES
2017-08-18 21:40:10 +00:00
e n d i f
i f e q ( $( CC_MACH ) , p p c 6 4 l e )
ZT_ARCHITECTURE = 8
e n d i f
i f e q ( $( CC_MACH ) , p p c 6 4 e l )
ZT_ARCHITECTURE = 8
2017-08-06 09:06:00 +00:00
e n d i f
2017-01-11 22:37:31 +00:00
i f e q ( $( CC_MACH ) , i 3 8 6 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 1
2017-01-11 22:37:31 +00:00
e n d i f
2017-04-24 22:19:03 +00:00
i f e q ( $( CC_MACH ) , i 4 8 6 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 1
2017-04-24 22:19:03 +00:00
e n d i f
i f e q ( $( CC_MACH ) , i 5 8 6 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 1
2017-04-24 22:19:03 +00:00
e n d i f
2017-01-11 22:37:31 +00:00
i f e q ( $( CC_MACH ) , i 6 8 6 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 1
2017-01-11 22:37:31 +00:00
e n d i f
i f e q ( $( CC_MACH ) , a r m )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-01-11 22:37:31 +00:00
e n d i f
2017-03-17 22:26:08 +00:00
i f e q ( $( CC_MACH ) , a r m e l )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 22:26:08 +00:00
e n d i f
i f e q ( $( CC_MACH ) , a r m h f )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 22:26:08 +00:00
e n d i f
2017-03-17 20:55:26 +00:00
i f e q ( $( CC_MACH ) , a r m v 6 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 20:55:26 +00:00
e n d i f
2019-07-01 13:56:02 +00:00
i f e q ( $( CC_MACH ) , a r m v 6 l )
ZT_ARCHITECTURE = 3
override DEFS += -DZT_NO_TYPE_PUNNING
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
e n d i f
2017-04-04 16:15:38 +00:00
i f e q ( $( CC_MACH ) , a r m v 6 z k )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-04-04 16:15:38 +00:00
e n d i f
i f e q ( $( CC_MACH ) , a r m v 6 k z )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-04-04 16:15:38 +00:00
e n d i f
2017-03-17 20:55:26 +00:00
i f e q ( $( CC_MACH ) , a r m v 7 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 3
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 20:55:26 +00:00
e n d i f
2017-10-19 13:21:24 +00:00
i f e q ( $( CC_MACH ) , a r m v 7 l )
2017-10-24 19:21:56 +00:00
ZT_ARCHITECTURE = 3
2017-10-19 13:21:24 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-10-19 13:21:24 +00:00
e n d i f
2018-10-03 22:40:16 +00:00
i f e q ( $( CC_MACH ) , a r m v 7 h l )
ZT_ARCHITECTURE = 3
2018-01-02 10:32:17 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-10-03 22:40:16 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2018-01-02 10:32:17 +00:00
e n d i f
2017-01-11 22:37:31 +00:00
i f e q ( $( CC_MACH ) , a r m 6 4 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 4
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-01-11 22:37:31 +00:00
e n d i f
i f e q ( $( CC_MACH ) , a a r c h 6 4 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 4
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-01-11 22:37:31 +00:00
e n d i f
2017-04-18 16:14:33 +00:00
i f e q ( $( CC_MACH ) , m i p s e l )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 5
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
e n d i f
i f e q ( $( CC_MACH ) , m i p s )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 5
2017-04-18 16:14:33 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
e n d i f
i f e q ( $( CC_MACH ) , m i p s 6 4 )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 6
2017-04-04 18:26:50 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
e n d i f
2017-04-18 16:14:33 +00:00
i f e q ( $( CC_MACH ) , m i p s 6 4 e l )
2017-05-04 22:54:08 +00:00
ZT_ARCHITECTURE = 6
2017-03-21 15:21:11 +00:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-03-17 20:55:26 +00:00
e n d i f
2019-06-11 17:54:06 +00:00
i f e q ( $( CC_MACH ) , s 3 9 0 x )
ZT_ARCHITECTURE = 16
e n d i f
2017-03-17 20:55:26 +00:00
2017-04-18 16:14:33 +00:00
# Fail if system architecture could not be determined
i f e q ( $( ZT_ARCHITECTURE ) , 9 9 9 )
ERR = $( error FATAL: architecture could not be determined from $( CC) -dumpmachine: $CC_MACH )
.PHONY : err
err : ; $( ERR )
e n d i f
# Disable software updates by default on Linux since that is normally done with package management
2017-04-18 16:19:39 +00:00
o v e r r i d e DEFS += -DZT_BUILD_PLATFORM= 1 -DZT_BUILD_ARCHITECTURE= $( ZT_ARCHITECTURE) -DZT_SOFTWARE_UPDATE_DEFAULT= "\"disable\""
2017-04-18 16:14:33 +00:00
2017-11-03 20:59:36 +00:00
# This forces libstdc++ not to include these abominations, especially mt and pool
o v e r r i d e DEFS += -D_MT_ALLOCATOR_H -D_POOL_ALLOCATOR_H -D_EXTPTR_ALLOCATOR_H -D_DEBUG_ALLOCATOR_H
2017-04-04 18:26:50 +00:00
# Static builds, which are currently done for a number of Linux targets
2017-01-26 23:02:03 +00:00
i f e q ( $( ZT_STATIC ) , 1 )
override LDFLAGS += -static
2017-05-04 22:54:08 +00:00
e n d i f
2018-02-01 23:52:41 +00:00
# For building an official semi-static binary on CentOS 7
i f e q ( $( ZT_OFFICIAL ) , 1 )
CORE_OBJS += ext/misc/linux-old-glibc-compat.o
override LDFLAGS += -Wl,--wrap= memcpy -static-libstdc++
e n d i f
2017-05-04 22:54:08 +00:00
# ARM32 hell -- use conservative CFLAGS
i f e q ( $( ZT_ARCHITECTURE ) , 3 )
ifeq ( $( shell if [ -e /usr/bin/dpkg ] ; then dpkg --print-architecture; fi ) ,armel)
2020-01-23 00:36:26 +00:00
override CFLAGS += -march= armv5t -mfloat-abi= soft -msoft-float -mno-unaligned-access -marm
override CXXFLAGS += -march= armv5t -mfloat-abi= soft -msoft-float -mno-unaligned-access -marm
2018-03-13 13:51:17 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 0
2017-05-04 22:54:08 +00:00
else
2020-01-23 00:36:26 +00:00
override CFLAGS += -march= armv5t -mno-unaligned-access -marm -fexceptions
override CXXFLAGS += -march= armv5t -mno-unaligned-access -marm -fexceptions
2018-04-30 20:07:32 +00:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 0
2017-04-04 18:26:50 +00:00
endif
2017-01-26 23:02:03 +00:00
e n d i f
2017-04-25 01:12:58 +00:00
# Build faster crypto on some targets
2018-04-20 18:35:50 +00:00
i f e q ( $( ZT_USE_X 64_ASM_SALSA ) , 1 )
override DEFS += -DZT_USE_X64_ASM_SALSA2012
override CORE_OBJS += ext/x64-salsa2012-asm/salsa2012.o
e n d i f
i f e q ( $( ZT_USE_X 64_ASM_ED 25519) , 1 )
override DEFS += -DZT_USE_FAST_X64_ED25519
override CORE_OBJS += ext/ed25519-amd64-asm/choose_t.o ext/ed25519-amd64-asm/consts.o ext/ed25519-amd64-asm/fe25519_add.o ext/ed25519-amd64-asm/fe25519_freeze.o ext/ed25519-amd64-asm/fe25519_mul.o ext/ed25519-amd64-asm/fe25519_square.o ext/ed25519-amd64-asm/fe25519_sub.o ext/ed25519-amd64-asm/ge25519_add_p1p1.o ext/ed25519-amd64-asm/ge25519_dbl_p1p1.o ext/ed25519-amd64-asm/ge25519_nielsadd2.o ext/ed25519-amd64-asm/ge25519_nielsadd_p1p1.o ext/ed25519-amd64-asm/ge25519_p1p1_to_p2.o ext/ed25519-amd64-asm/ge25519_p1p1_to_p3.o ext/ed25519-amd64-asm/ge25519_pnielsadd_p1p1.o ext/ed25519-amd64-asm/heap_rootreplaced.o ext/ed25519-amd64-asm/heap_rootreplaced_1limb.o ext/ed25519-amd64-asm/heap_rootreplaced_2limbs.o ext/ed25519-amd64-asm/heap_rootreplaced_3limbs.o ext/ed25519-amd64-asm/sc25519_add.o ext/ed25519-amd64-asm/sc25519_barrett.o ext/ed25519-amd64-asm/sc25519_lt.o ext/ed25519-amd64-asm/sc25519_sub_nored.o ext/ed25519-amd64-asm/ull4_mul.o ext/ed25519-amd64-asm/fe25519_getparity.o ext/ed25519-amd64-asm/fe25519_invert.o ext/ed25519-amd64-asm/fe25519_iseq.o ext/ed25519-amd64-asm/fe25519_iszero.o ext/ed25519-amd64-asm/fe25519_neg.o ext/ed25519-amd64-asm/fe25519_pack.o ext/ed25519-amd64-asm/fe25519_pow2523.o ext/ed25519-amd64-asm/fe25519_setint.o ext/ed25519-amd64-asm/fe25519_unpack.o ext/ed25519-amd64-asm/ge25519_add.o ext/ed25519-amd64-asm/ge25519_base.o ext/ed25519-amd64-asm/ge25519_double.o ext/ed25519-amd64-asm/ge25519_double_scalarmult.o ext/ed25519-amd64-asm/ge25519_isneutral.o ext/ed25519-amd64-asm/ge25519_multi_scalarmult.o ext/ed25519-amd64-asm/ge25519_pack.o ext/ed25519-amd64-asm/ge25519_scalarmult_base.o ext/ed25519-amd64-asm/ge25519_unpackneg.o ext/ed25519-amd64-asm/hram.o ext/ed25519-amd64-asm/index_heap.o ext/ed25519-amd64-asm/sc25519_from32bytes.o ext/ed25519-amd64-asm/sc25519_from64bytes.o ext/ed25519-amd64-asm/sc25519_from_shortsc.o ext/ed25519-amd64-asm/sc25519_iszero.o ext/ed25519-amd64-asm/sc25519_mul.o ext/ed25519-amd64-asm/sc25519_mul_shortsc.o ext/ed25519-amd64-asm/sc25519_slide.o ext/ed25519-amd64-asm/sc25519_to32bytes.o ext/ed25519-amd64-asm/sc25519_window4.o ext/ed25519-amd64-asm/sign.o
2017-04-25 01:12:58 +00:00
e n d i f
2018-03-13 13:51:17 +00:00
i f e q ( $( ZT_USE_ARM 32_NEON_ASM_CRYPTO ) , 1 )
2017-04-25 01:12:58 +00:00
override DEFS += -DZT_USE_ARM32_NEON_ASM_SALSA2012
2017-05-08 21:36:55 +00:00
override CORE_OBJS += ext/arm32-neon-salsa2012-asm/salsa2012.o
2017-04-25 01:12:58 +00:00
e n d i f
2019-07-22 04:37:01 +00:00
.PHONY : all
2016-12-23 22:33:04 +00:00
all : one
2013-07-04 20:56:19 +00:00
2019-07-22 04:37:01 +00:00
.PHONY : one
one : zerotier -one zerotier -idtool zerotier -cli
zerotier-one : $( CORE_OBJS ) $( ONE_OBJS ) one .o
2017-05-08 21:36:55 +00:00
$( CXX) $( CXXFLAGS) $( LDFLAGS) -o zerotier-one $( CORE_OBJS) $( ONE_OBJS) one.o $( LDLIBS)
2013-07-04 20:56:19 +00:00
$( STRIP) zerotier-one
2019-07-22 04:37:01 +00:00
zerotier-idtool : zerotier -one
ln -sf zerotier-one zerotier-idtool
2017-05-08 21:36:55 +00:00
2019-07-22 04:37:01 +00:00
zerotier-cli : zerotier -one
ln -sf zerotier-one zerotier-cli
2017-05-08 21:36:55 +00:00
2017-12-07 22:13:24 +00:00
libzerotiercore.a : FORCE
2017-12-15 19:03:20 +00:00
make CFLAGS = "-O3 -fstack-protector -fPIC" CXXFLAGS = "-O3 -std=c++11 -fstack-protector -fPIC" $( CORE_OBJS)
2017-05-08 21:36:55 +00:00
ar rcs libzerotiercore.a $( CORE_OBJS)
ranlib libzerotiercore.a
core : libzerotiercore .a
selftest : $( CORE_OBJS ) $( ONE_OBJS ) selftest .o
2018-02-01 23:52:41 +00:00
$( CXX) $( CXXFLAGS) $( LDFLAGS) -o zerotier-selftest selftest.o $( CORE_OBJS) $( ONE_OBJS) $( LDLIBS)
2013-07-04 20:56:19 +00:00
$( STRIP) zerotier-selftest
2017-05-08 21:36:55 +00:00
zerotier-selftest : selftest
2016-06-08 17:13:31 +00:00
manpages : FORCE
cd doc ; ./build.sh
2016-06-10 15:26:27 +00:00
doc : manpages
2015-12-09 02:17:03 +00:00
clean : FORCE
2019-08-23 17:19:59 +00:00
rm -rf *.a *.so *.o node/*.o controller/*.o osdep/*.o service/*.o ext/http-parser/*.o ext/miniupnpc/*.o ext/libnatpmp/*.o $( CORE_OBJS) $( ONE_OBJS) zerotier-one zerotier-idtool zerotier-cli zerotier-selftest build-* ZeroTierOneInstaller-* *.deb *.rpm .depend debian/files debian/zerotier-one*.debhelper debian/zerotier-one.substvars debian/*.log debian/zerotier-one doc/node_modules ext/misc/*.o debian/.debhelper debian/debhelper-build-stamp docker/zerotier-one
2014-08-18 14:07:03 +00:00
2016-06-08 17:13:31 +00:00
distclean : clean
2016-06-10 15:26:27 +00:00
realclean : distclean
2018-02-01 23:58:58 +00:00
official : FORCE
make -j4 ZT_OFFICIAL = 1 all
2017-08-18 21:00:35 +00:00
2019-08-27 23:57:07 +00:00
docker : FORCE
docker build -f ext/installfiles/linux/zerotier-containerized/Dockerfile -t zerotier-containerized .
2019-08-23 17:19:59 +00:00
2017-11-03 20:59:36 +00:00
central-controller : FORCE
2019-03-05 00:27:39 +00:00
make -j4 LDLIBS = "-L/usr/pgsql-10/lib/ -lpq -Lext/librabbitmq/centos_x64/lib/ -lrabbitmq" CXXFLAGS = "-I/usr/pgsql-10/include -I./ext/librabbitmq/centos_x64/include -fPIC" DEFS = "-DZT_CONTROLLER_USE_LIBPQ -DZT_CONTROLLER" ZT_OFFICIAL = 1 ZT_USE_X64_ASM_ED25519 = 1 one
2017-11-03 20:59:36 +00:00
2019-11-20 21:56:26 +00:00
central-controller-docker : FORCE
docker build -t docker.zerotier.com/zerotier-central/ztcentral-controller:${ TIMESTAMP } -f ext/central-controller-docker/Dockerfile --build-arg git_branch = ` git name-rev --name-only HEAD` .
2018-09-28 17:55:39 +00:00
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-10 15:26:27 +00:00
# Note: keep the symlinks in /var/lib/zerotier-one to the binaries since these
# provide backward compatibility with old releases where the binaries actually
# lived here. Folks got scripts.
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
2016-06-27 21:45:38 +00:00
rm -f $( DESTDIR) /usr/sbin/zerotier-cli
rm -f $( DESTDIR) /usr/sbin/zerotier-idtool
ln -s zerotier-one $( DESTDIR) /usr/sbin/zerotier-cli
ln -s zerotier-one $( DESTDIR) /usr/sbin/zerotier-idtool
2016-06-08 00:11:09 +00:00
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
2016-06-27 21:36:58 +00:00
ln -s ../../../usr/sbin/zerotier-one $( DESTDIR) /var/lib/zerotier-one/zerotier-one
ln -s ../../../usr/sbin/zerotier-one $( DESTDIR) /var/lib/zerotier-one/zerotier-cli
ln -s ../../../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 00:11:09 +00:00
2016-06-10 15:26:27 +00:00
# Uninstall preserves identity.public and identity.secret since the user might
# want to save these. These are your ZeroTier address.
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
2016-06-27 21:45:38 +00:00
rm -f $( DESTDIR) /usr/sbin/zerotier-cli
rm -f $( DESTDIR) /usr/sbin/zerotier-idtool
2016-06-08 00:11:09 +00:00
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 00:11:09 +00:00
2016-06-10 15:26:27 +00:00
# These are just for convenience for building Linux packages
2017-03-07 17:04:40 +00:00
debian : FORCE
2020-01-31 21:13:02 +00:00
debuild --no-lintian -I -i -us -uc -nc -b
2016-06-08 18:21:01 +00:00
2018-04-27 23:21:22 +00:00
debian-clean : FORCE
2018-05-03 19:51:49 +00:00
rm -rf debian/files debian/zerotier-one*.debhelper debian/zerotier-one.substvars debian/*.log debian/zerotier-one debian/.debhelper debian/debhelper-build-stamp
2018-04-27 23:21:22 +00:00
2017-03-07 17:04:40 +00:00
redhat : FORCE
2019-08-24 04:38:04 +00:00
rpmbuild --target ` rpm -q bash --qf "%{arch}" ` -ba zerotier-one.spec
2016-06-08 23:29:30 +00:00
2019-08-08 14:50:05 +00:00
# This installs the packages needed to build ZT locally on CentOS 7 and
# is here largely for documentation purposes.
centos-7-setup : FORCE
yum install -y gcc gcc-c++ make epel-release git
yum install -y centos-release-scl
yum install -y devtoolset-8-gcc devtoolset-8-gcc-c++
2013-11-06 17:06:42 +00:00
FORCE :