mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 13:07:55 +00:00
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
CC=gcc
|
|
CXX=g++
|
|
|
|
INCLUDES=
|
|
DEFS=
|
|
LIBS=-lm
|
|
|
|
# Uncomment for a release optimized universal binary build
|
|
CFLAGS=-arch i386 -arch x86_64 -Wall -O3 -ftree-vectorize -fstack-protector -pthread -mmacosx-version-min=10.6 -DNDEBUG $(INCLUDES) $(DEFS)
|
|
STRIP=strip
|
|
|
|
# Uncomment for a debug build
|
|
#CFLAGS=-Wall -g -pthread -DZT_TRACE -DZT_LOG_STDOUT $(INCLUDES) $(DEFS)
|
|
#STRIP=echo
|
|
|
|
CXXFLAGS=$(CFLAGS) -fno-rtti
|
|
|
|
include objects.mk
|
|
|
|
all: one cli
|
|
|
|
one: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) -o zerotier-one main.cpp $(OBJS) $(LIBS)
|
|
$(STRIP) zerotier-one
|
|
|
|
cli: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) -o zerotier-cli cli.cpp $(OBJS) $(LIBS)
|
|
$(STRIP) zerotier-cli
|
|
|
|
selftest: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) -o zerotier-selftest selftest.cpp $(OBJS) $(LIBS)
|
|
$(STRIP) zerotier-selftest
|
|
|
|
idtool: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) -o zerotier-idtool idtool.cpp $(OBJS) $(LIBS)
|
|
$(STRIP) zerotier-idtool
|
|
|
|
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
|
|
|
|
clean:
|
|
rm -rf *.dSYM
|
|
rm -f $(OBJS) zerotier-*
|
|
cd tap-mac/tuntap ; make clean
|
|
|
|
FORCE:
|