2015-07-02 09:13:56 -07:00
# Automagically pick clang or gcc, with preference for clang
2015-07-23 13:05:18 -07: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 16:46:41 -05: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 13:05:18 -07:00
e n d i f
i f e q ( $( origin CXX ) , d e f a u l t )
2019-08-06 16:46:41 -05: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 13:05:18 -07:00
e n d i f
2015-12-04 13:19:31 -08:00
INCLUDES ?=
2017-04-27 00:59:36 -07:00
DEFS ?=
2015-07-04 20:32:26 +02:00
LDLIBS ?=
2016-06-07 17:11:09 -07:00
DESTDIR ?=
2013-07-04 16:56:19 -04:00
2014-10-29 16:32:24 -07:00
i n c l u d e o b j e c t s . m k
2017-05-08 14:36:55 -07:00
ONE_OBJS += osdep/LinuxEthernetTap.o
2018-05-24 15:22:11 -07:00
ONE_OBJS += osdep/LinuxNetLink.o
2018-06-04 12:24:12 -07:00
NLTEST_OBJS += osdep/LinuxNetLink.o node/InetAddress.o node/Utils.o node/Salsa20.o
2018-05-24 15:22:11 -07:00
NLTEST_OBJS += nltest.o
2016-06-01 21:55:48 -07:00
2018-09-28 10:55:39 -07:00
# for central controller builds
TIMESTAMP = $( shell date +"%Y%m%d%H%M" )
2017-01-12 13:18:11 -08: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 14:36:55 -07:00
ONE_OBJS += osdep/PortMapper.o
2017-11-03 16:59:36 -04:00
o v e r r i d e DEFS += -DZT_USE_MINIUPNPC
2017-11-09 11:35:46 -05: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 13:18:11 -08:00
i f e q ( $( MINIUPNPC_IS_NEW_ENOUGH ) , 1 )
2017-11-03 16:59:36 -04:00
override DEFS += -DZT_USE_SYSTEM_MINIUPNPC
2017-01-12 13:18:11 -08:00
LDLIBS += -lminiupnpc
e l s e
2017-11-03 16:59:36 -04: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 14:36:55 -07: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 13:18:11 -08:00
e n d i f
i f e q ( $( wildcard /usr /include /natpmp .h ) , )
2017-05-08 14:36:55 -07:00
ONE_OBJS += ext/libnatpmp/natpmp.o ext/libnatpmp/getgateway.o
2017-01-12 13:18:11 -08:00
e l s e
LDLIBS += -lnatpmp
2017-11-03 16:59:36 -04:00
override DEFS += -DZT_USE_SYSTEM_NATPMP
2014-01-07 14:48:56 -08:00
e n d i f
2013-12-11 13:14:10 -08:00
2017-05-08 14:36:55 -07: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 16:32:49 -07: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 09:25:34 -07:00
e n d i f
2018-05-30 17:45:29 -07:00
i f e q ( $( ZT_DEBUG_TRACE ) , 1 )
DEFS += -DZT_DEBUG_TRACE
e n d i f
2016-06-27 09:25:34 -07:00
i f e q ( $( ZT_TRACE ) , 1 )
2018-07-11 16:32:49 -07:00
DEFS += -DZT_TRACE
2016-06-27 09:25:34 -07:00
e n d i f
2016-11-15 11:50:53 -08:00
i f e q ( $( ZT_RULES_ENGINE_DEBUGGING ) , 1 )
2017-11-03 16:59:36 -04:00
override DEFS += -DZT_RULES_ENGINE_DEBUGGING
2016-11-15 11:50:53 -08:00
e n d i f
2017-12-14 13:27:49 -08: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 10:07:03 -04:00
i f e q ( $( ZT_DEBUG ) , 1 )
2018-07-03 12:51:41 -07: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 14:46:45 -07:00
ZT_TRACE = 1
2015-11-30 13:17:43 -08:00
STRIP?= echo
2014-10-12 11:42:49 -07:00
# The following line enables optimization for the crypto code, since
2015-07-02 09:13:56 -07:00
# C25519 in particular is almost UNUSABLE in -O0 even on a 3ghz box!
2017-04-27 00:59:36 -07:00
node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o : CXXFLAGS =-Wall -O 2 -g -pthread $( INCLUDES ) $( DEFS )
2014-08-18 10:07:03 -04:00
e l s e
2018-04-25 06:34:34 -07:00
CFLAGS?= -O3 -fstack-protector -fPIE
2018-03-13 06:51:17 -07:00
override CFLAGS += -Wall -Wno-deprecated -pthread $( INCLUDES) -DNDEBUG $( DEFS)
2018-04-25 06:34:34 -07:00
CXXFLAGS?= -O3 -fstack-protector -fPIE
2018-03-13 06:51:17 -07:00
override CXXFLAGS += -Wall -Wno-deprecated -std= c++11 -pthread $( INCLUDES) -DNDEBUG $( DEFS)
2018-04-25 06:34:34 -07:00
LDFLAGS = -pie -Wl,-z,relro,-z,now
2015-11-30 13:17:43 -08:00
STRIP?= strip
2015-10-17 00:15:10 +02:00
STRIP += --strip-all
2014-08-18 10:07:03 -04:00
e n d i f
2013-07-04 16:56:19 -04:00
2018-05-04 12:09:04 -07: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 14:31:34 -07:00
override CFLAGS += -fPIC
2018-05-04 13:03:52 -07:00
override CXXFLAGS += -fPIC
2018-05-09 13:51:32 -07:00
override DEFS += -D__SYNOLOGY__
2018-05-04 12:09:04 -07:00
e n d i f
2019-07-23 13:33:25 -07:00
i f e q ( $( ZT_DISABLE_COMPRESSION ) , 1 )
override DEFS += -DZT_DISABLE_COMPRESSION
e n d i f
2017-05-08 14:46:45 -07:00
i f e q ( $( ZT_TRACE ) , 1 )
override DEFS += -DZT_TRACE
e n d i f
2017-04-26 08:42:49 -07:00
i f e q ( $( ZT_USE_TEST_TAP ) , 1 )
override DEFS += -DZT_USE_TEST_TAP
e n d i f
2018-02-16 15:08:04 -08: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 16:51:05 -04:00
# Uncomment for gprof profile build
#CFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)
2015-07-02 09:13:56 -07:00
#CXXFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)
2014-03-11 11:50:04 -07:00
#LDFLAGS=
2013-10-18 16:51:05 -04:00
#STRIP=echo
2017-01-11 14:37:31 -08:00
# Determine system build architecture from compiler target
CC_MACH = $( shell $( CC) -dumpmachine | cut -d '-' -f 1)
2017-04-18 09:14:33 -07:00
ZT_ARCHITECTURE = 999
2017-01-11 14:37:31 -08:00
i f e q ( $( CC_MACH ) , x 8 6 _ 6 4 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 2
2018-04-20 11:35:50 -07:00
ZT_USE_X64_ASM_SALSA = 1
2018-04-25 06:34:34 -07:00
ZT_USE_X64_ASM_ED25519 = 1
2017-01-11 14:37:31 -08:00
e n d i f
i f e q ( $( CC_MACH ) , a m d 6 4 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 2
2018-04-20 11:35:50 -07:00
ZT_USE_X64_ASM_SALSA = 1
2018-04-25 06:34:34 -07:00
ZT_USE_X64_ASM_ED25519 = 1
2017-01-11 14:37:31 -08:00
e n d i f
2017-08-06 02:06:00 -07:00
i f e q ( $( CC_MACH ) , p o w e r p c 6 4 l e )
2017-08-18 14:40:10 -07:00
ZT_ARCHITECTURE = 8
2018-05-09 13:51:32 -07: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 14:40:10 -07: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 02:06:00 -07:00
e n d i f
2017-01-11 14:37:31 -08:00
i f e q ( $( CC_MACH ) , i 3 8 6 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 1
2017-01-11 14:37:31 -08:00
e n d i f
2017-04-24 15:19:03 -07:00
i f e q ( $( CC_MACH ) , i 4 8 6 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 1
2017-04-24 15:19:03 -07:00
e n d i f
i f e q ( $( CC_MACH ) , i 5 8 6 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 1
2017-04-24 15:19:03 -07:00
e n d i f
2017-01-11 14:37:31 -08:00
i f e q ( $( CC_MACH ) , i 6 8 6 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 1
2017-01-11 14:37:31 -08:00
e n d i f
i f e q ( $( CC_MACH ) , a r m )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-01-11 14:37:31 -08: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 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07: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 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 22:26:08 +00:00
e n d i f
2017-03-17 13:55:26 -07:00
i f e q ( $( CC_MACH ) , a r m v 6 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 13:55:26 -07:00
e n d i f
2019-07-01 14:56:02 +01: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 09:15:38 -07:00
i f e q ( $( CC_MACH ) , a r m v 6 z k )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-04-04 09:15:38 -07:00
e n d i f
i f e q ( $( CC_MACH ) , a r m v 6 k z )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-04-04 09:15:38 -07:00
e n d i f
2017-03-17 13:55:26 -07:00
i f e q ( $( CC_MACH ) , a r m v 7 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 3
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-03-17 13:55:26 -07:00
e n d i f
2017-10-19 09:21:24 -04:00
i f e q ( $( CC_MACH ) , a r m v 7 l )
2017-10-24 12:21:56 -07:00
ZT_ARCHITECTURE = 3
2017-10-19 09:21:24 -04:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2017-10-19 09:21:24 -04:00
e n d i f
2018-10-03 15:40:16 -07:00
i f e q ( $( CC_MACH ) , a r m v 7 h l )
ZT_ARCHITECTURE = 3
2018-01-02 11:32:17 +01:00
override DEFS += -DZT_NO_TYPE_PUNNING
2018-10-03 15:40:16 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 1
2018-01-02 11:32:17 +01:00
e n d i f
2017-01-11 14:37:31 -08:00
i f e q ( $( CC_MACH ) , a r m 6 4 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 4
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-01-11 14:37:31 -08:00
e n d i f
i f e q ( $( CC_MACH ) , a a r c h 6 4 )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 4
2017-04-18 09:14:33 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-01-11 14:37:31 -08:00
e n d i f
2017-04-18 09:14:33 -07:00
i f e q ( $( CC_MACH ) , m i p s e l )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 5
2017-04-18 09:14:33 -07: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 15:54:08 -07:00
ZT_ARCHITECTURE = 5
2017-04-18 09:14:33 -07: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 15:54:08 -07:00
ZT_ARCHITECTURE = 6
2017-04-04 11:26:50 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
e n d i f
2017-04-18 09:14:33 -07:00
i f e q ( $( CC_MACH ) , m i p s 6 4 e l )
2017-05-04 15:54:08 -07:00
ZT_ARCHITECTURE = 6
2017-03-21 08:21:11 -07:00
override DEFS += -DZT_NO_TYPE_PUNNING
2017-03-17 13:55:26 -07:00
e n d i f
2019-06-11 10:54:06 -07:00
i f e q ( $( CC_MACH ) , s 3 9 0 x )
ZT_ARCHITECTURE = 16
e n d i f
2017-03-17 13:55:26 -07:00
2017-04-18 09:14:33 -07: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 09:19:39 -07: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 09:14:33 -07:00
2017-11-03 16:59:36 -04: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 11:26:50 -07:00
# Static builds, which are currently done for a number of Linux targets
2017-01-26 15:02:03 -08:00
i f e q ( $( ZT_STATIC ) , 1 )
override LDFLAGS += -static
2017-05-04 15:54:08 -07:00
e n d i f
2018-02-01 15:52:41 -08: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 15:54:08 -07: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)
override CFLAGS += -march= armv5 -mfloat-abi= soft -msoft-float -mno-unaligned-access -marm
override CXXFLAGS += -march= armv5 -mfloat-abi= soft -msoft-float -mno-unaligned-access -marm
2018-03-13 06:51:17 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 0
2017-05-04 15:54:08 -07:00
else
2017-05-04 16:00:53 -07:00
override CFLAGS += -march= armv5 -mno-unaligned-access -marm
override CXXFLAGS += -march= armv5 -mno-unaligned-access -marm
2018-04-30 13:07:32 -07:00
ZT_USE_ARM32_NEON_ASM_CRYPTO = 0
2017-04-04 11:26:50 -07:00
endif
2017-01-26 15:02:03 -08:00
e n d i f
2017-04-24 18:12:58 -07:00
# Build faster crypto on some targets
2018-04-20 11:35:50 -07: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-24 18:12:58 -07:00
e n d i f
2018-03-13 06:51:17 -07:00
i f e q ( $( ZT_USE_ARM 32_NEON_ASM_CRYPTO ) , 1 )
2017-04-24 18:12:58 -07:00
override DEFS += -DZT_USE_ARM32_NEON_ASM_SALSA2012
2017-05-08 14:36:55 -07:00
override CORE_OBJS += ext/arm32-neon-salsa2012-asm/salsa2012.o
2017-04-24 18:12:58 -07:00
e n d i f
2019-07-21 21:37:01 -07:00
.PHONY : all
2016-12-23 14:33:04 -08:00
all : one
2013-07-04 16:56:19 -04:00
2019-07-21 21:37:01 -07:00
.PHONY : one
one : zerotier -one zerotier -idtool zerotier -cli
zerotier-one : $( CORE_OBJS ) $( ONE_OBJS ) one .o
2017-05-08 14:36:55 -07:00
$( CXX) $( CXXFLAGS) $( LDFLAGS) -o zerotier-one $( CORE_OBJS) $( ONE_OBJS) one.o $( LDLIBS)
2013-07-04 16:56:19 -04:00
$( STRIP) zerotier-one
2019-07-21 21:37:01 -07:00
zerotier-idtool : zerotier -one
ln -sf zerotier-one zerotier-idtool
2017-05-08 14:36:55 -07:00
2019-07-21 21:37:01 -07:00
zerotier-cli : zerotier -one
ln -sf zerotier-one zerotier-cli
2017-05-08 14:36:55 -07:00
2017-12-07 17:13:24 -05:00
libzerotiercore.a : FORCE
2017-12-15 11:03:20 -08:00
make CFLAGS = "-O3 -fstack-protector -fPIC" CXXFLAGS = "-O3 -std=c++11 -fstack-protector -fPIC" $( CORE_OBJS)
2017-05-08 14:36:55 -07:00
ar rcs libzerotiercore.a $( CORE_OBJS)
ranlib libzerotiercore.a
core : libzerotiercore .a
selftest : $( CORE_OBJS ) $( ONE_OBJS ) selftest .o
2018-02-01 15:52:41 -08:00
$( CXX) $( CXXFLAGS) $( LDFLAGS) -o zerotier-selftest selftest.o $( CORE_OBJS) $( ONE_OBJS) $( LDLIBS)
2013-07-04 16:56:19 -04:00
$( STRIP) zerotier-selftest
2017-05-08 14:36:55 -07:00
zerotier-selftest : selftest
2016-06-08 10:13:31 -07:00
manpages : FORCE
cd doc ; ./build.sh
2016-06-10 08:26:27 -07:00
doc : manpages
2015-12-08 18:17:03 -08:00
clean : FORCE
2018-05-03 12:51:49 -07: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
2014-08-18 10:07:03 -04:00
2016-06-08 10:13:31 -07:00
distclean : clean
2016-06-10 08:26:27 -07:00
realclean : distclean
2018-02-01 15:58:58 -08:00
official : FORCE
make -j4 ZT_OFFICIAL = 1 all
2017-08-18 14:00:35 -07:00
2017-11-03 16:59:36 -04:00
central-controller : FORCE
2019-03-04 16:27:39 -08: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 16:59:36 -04:00
2018-09-28 10:55:39 -07:00
central-controller-docker : central -controller
2019-02-08 10:40:57 -08:00
docker build -t docker.zerotier.com/zerotier-central/ztcentral-controller:${ TIMESTAMP } -f docker/Dockerfile .
2018-09-28 10:55:39 -07:00
2014-08-18 10:07:03 -04:00
debug : FORCE
2015-07-02 09:13:56 -07:00
make ZT_DEBUG = 1 one
make ZT_DEBUG = 1 selftest
2013-11-06 12:06:42 -05:00
2018-05-24 15:22:11 -07:00
nltest : $( NLTEST_OBJS )
$( CXX) $( CXXFLAGS) $( LDFLAGS) -o nltest $( NLTEST_OBJS) $( LDLIBS)
2016-06-10 08:26:27 -07: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-07 17:11:09 -07: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 14:45:38 -07: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-07 17:11:09 -07: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 14:36:58 -07: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 10:19:46 -07: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-07 17:11:09 -07:00
2016-06-10 08:26:27 -07:00
# Uninstall preserves identity.public and identity.secret since the user might
# want to save these. These are your ZeroTier address.
2016-06-07 17:11:09 -07: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 14:45:38 -07:00
rm -f $( DESTDIR) /usr/sbin/zerotier-cli
rm -f $( DESTDIR) /usr/sbin/zerotier-idtool
2016-06-07 17:11:09 -07: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 10:19:46 -07: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-07 17:11:09 -07:00
2016-06-10 08:26:27 -07:00
# These are just for convenience for building Linux packages
2017-03-07 09:04:40 -08:00
debian : FORCE
2017-03-07 11:22:50 -08:00
debuild -I -i -us -uc -nc -b
2016-06-08 11:21:01 -07:00
2018-04-27 16:21:22 -07:00
debian-clean : FORCE
2018-05-03 12:51:49 -07: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 16:21:22 -07:00
2017-03-07 09:04:40 -08:00
redhat : FORCE
2016-06-08 16:29:30 -07:00
rpmbuild -ba zerotier-one.spec
2019-08-08 09:50:05 -05: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 12:06:42 -05:00
FORCE :