You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.7 KiB
105 lines
3.7 KiB
CC=clang |
|
CXX=clang++ |
|
|
|
INCLUDES=-I/usr/local/include |
|
DEFS= |
|
LIBS= |
|
ARCH_FLAGS=-arch x86_64 |
|
|
|
include objects.mk |
|
OBJS+=osdep/OSXEthernetTap.o |
|
#TESTNET_OBJS=testnet/SimNet.o testnet/SimNetSocketManager.o testnet/TestEthernetTap.o |
|
|
|
# Disable codesign since open source users will not have ZeroTier's certs |
|
CODESIGN=echo |
|
CODESIGN_CERT= |
|
|
|
ifeq ($(ZT_OFFICIAL_RELEASE),1) |
|
# For use by ZeroTier Networks -- sign with developer cert |
|
ZT_AUTO_UPDATE=1 |
|
DEFS+=-DZT_OFFICIAL_RELEASE |
|
CODESIGN=codesign |
|
CODESIGN_CERT="Developer ID Application: ZeroTier Networks LLC (8ZD9JUCZ4V)" |
|
endif |
|
|
|
ifeq ($(ZT_AUTO_UPDATE),1) |
|
DEFS+=-DZT_AUTO_UPDATE |
|
endif |
|
|
|
# Build with ZT_ENABLE_NETCONF_MASTER=1 to build with NetworkConfigMaster enabled |
|
ifeq ($(ZT_ENABLE_NETCONF_MASTER),1) |
|
DEFS+=-DZT_ENABLE_NETCONF_MASTER |
|
LIBS+=-L/usr/local/lib -lsqlite3 |
|
ARCH_FLAGS=-arch x86_64 |
|
OBJS+=netconf/SqliteNetworkConfigMaster.o |
|
endif |
|
|
|
# Enable SSE-optimized Salsa20 -- all Intel macs support SSE2 |
|
DEFS+=-DZT_SALSA20_SSE |
|
|
|
ifeq ($(ZT_DEBUG),1) |
|
DEFS+=-DZT_TRACE |
|
CFLAGS=-Wall -g -pthread $(INCLUDES) $(DEFS) |
|
STRIP=echo |
|
# The following line enables optimization for the crypto code, since |
|
# C25519 in particular is almost UNUSABLE in heavy testing without it. |
|
ext/lz4/lz4.o node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o: CFLAGS = -Wall -O2 -g -pthread $(INCLUDES) $(DEFS) |
|
else |
|
CFLAGS=$(ARCH_FLAGS) -Wall -O3 -flto -fPIE -fvectorize -fstack-protector -pthread -mmacosx-version-min=10.7 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS) |
|
STRIP=strip |
|
endif |
|
|
|
CXXFLAGS=$(CFLAGS) -fno-rtti |
|
|
|
all: one |
|
|
|
one: $(OBJS) one.o |
|
$(CXX) $(CXXFLAGS) -o zerotier-one $(OBJS) one.o $(LIBS) |
|
$(STRIP) zerotier-one |
|
ln -sf zerotier-one zerotier-cli |
|
ln -sf zerotier-one zerotier-idtool |
|
|
|
selftest: $(OBJS) selftest.o |
|
$(CXX) $(CXXFLAGS) -o zerotier-selftest selftest.o $(OBJS) $(LIBS) |
|
$(STRIP) zerotier-selftest |
|
|
|
#testnet: $(TESTNET_OBJS) $(OBJS) testnet.o |
|
# $(CXX) $(CXXFLAGS) -o zerotier-testnet testnet.o $(OBJS) $(TESTNET_OBJS) $(LIBS) |
|
# $(STRIP) zerotier-testnet |
|
|
|
# Requires that ../Qt be symlinked to the Qt root to use for UI build |
|
#mac-ui: FORCE |
|
# mkdir -p build-ZeroTierUI-release |
|
# cd build-ZeroTierUI-release ; ../../Qt/bin/qmake ../ZeroTierUI/ZeroTierUI.pro ; make -j 4 |
|
# strip "build-ZeroTierUI-release/ZeroTier One.app/Contents/MacOS/ZeroTier One" |
|
# find "build-ZeroTierUI-release/ZeroTier One.app" -type f -name '.DS_Store' -print0 | xargs -0 rm -f |
|
# $(CODESIGN) -f -s $(CODESIGN_CERT) "build-ZeroTierUI-release/ZeroTier One.app" |
|
# $(CODESIGN) -vvv "build-ZeroTierUI-release/ZeroTier One.app" |
|
|
|
clean: |
|
rm -rf *.dSYM build-* *.pkg *.dmg *.o netconf/*.o service/*.o node/*.o osdep/*.o ext/http-parser/*.o ext/lz4/*.o zerotier-* ZeroTierOneInstaller-* |
|
|
|
# For our use -- builds official signed binary, packages in installer and download DMG |
|
official: FORCE |
|
make -j 4 ZT_OFFICIAL_RELEASE=1 |
|
./buildinstaller.sh |
|
# make mac-dmg ZT_OFFICIAL_RELEASE=1 |
|
|
|
#mac-dmg: FORCE |
|
# mkdir -p build-ZeroTierOne-dmg |
|
# cd build-ZeroTierOne-dmg ; ln -sf /Applications Applications |
|
# cp -a "build-ZeroTierUI-release/ZeroTier One.app" build-ZeroTierOne-dmg/ |
|
# rm -f /tmp/tmp.dmg |
|
# hdiutil create /tmp/tmp.dmg -ov -volname "ZeroTier One" -fs HFS+ -srcfolder ./build-ZeroTierOne-dmg |
|
# hdiutil convert /tmp/tmp.dmg -format UDZO -o "ZeroTier One.dmg" |
|
# $(CODESIGN) -f -s $(CODESIGN_CERT) "ZeroTier One.dmg" |
|
# rm -f /tmp/tmp.dmg |
|
|
|
# For those building from source -- installs signed binary tap driver in system ZT home |
|
install-mac-tap: FORCE |
|
mkdir -p /Library/Application\ Support/ZeroTier/One |
|
rm -rf /Library/Application\ Support/ZeroTier/One/tap.kext |
|
cp -R ext/bin/tap-mac/tap.kext /Library/Application\ Support/ZeroTier/One |
|
chown -R root:wheel /Library/Application\ Support/ZeroTier/One/tap.kext |
|
|
|
FORCE:
|
|
|