2013-12-16 22:24:41 +00:00
|
|
|
# Pick clang or gcc, with preference for clang
|
|
|
|
CC=$(shell which clang gcc cc 2>/dev/null | head -n 1)
|
|
|
|
CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-09-16 13:20:59 +00:00
|
|
|
INCLUDES=
|
2013-10-21 18:12:00 +00:00
|
|
|
DEFS=
|
2013-10-01 21:19:24 +00:00
|
|
|
LIBS=
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-12-11 21:14:10 +00:00
|
|
|
ifeq ($(ZT_AUTO_UPDATE),1)
|
2013-12-31 19:21:53 +00:00
|
|
|
DEFS+=-DZT_AUTO_UPDATE
|
2013-12-11 21:14:10 +00:00
|
|
|
endif
|
|
|
|
|
2013-12-31 19:21:53 +00:00
|
|
|
# Uncomment to dump trace and log to stdout
|
|
|
|
#DEFS+=-DZT_TRACE -DZT_LOG_STDOUT
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
# Uncomment for a release optimized build
|
2013-12-16 22:24:41 +00:00
|
|
|
CFLAGS=-Wall -O3 -fvisibility=hidden -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
2013-10-01 21:19:24 +00:00
|
|
|
STRIP=strip --strip-all
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
# Uncomment for a debug build
|
2013-10-01 21:19:24 +00:00
|
|
|
#CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE $(DEFS)
|
|
|
|
#STRIP=echo
|
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)
|
|
|
|
#STRIP=echo
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
CXXFLAGS=$(CFLAGS) -fno-rtti
|
|
|
|
|
|
|
|
include objects.mk
|
|
|
|
|
2013-11-08 20:23:48 +00:00
|
|
|
all: one
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
one: $(OBJS)
|
|
|
|
$(CXX) $(CXXFLAGS) -o zerotier-one main.cpp $(OBJS) $(LIBS)
|
|
|
|
$(STRIP) zerotier-one
|
2013-11-19 20:05:14 +00:00
|
|
|
ln -sf zerotier-one zerotier-cli
|
2013-12-04 22:44:28 +00:00
|
|
|
ln -sf zerotier-one zerotier-idtool
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-11-08 22:37:47 +00:00
|
|
|
installer: one FORCE
|
|
|
|
./buildinstaller.sh
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
clean:
|
2014-01-06 18:11:32 +00:00
|
|
|
rm -rf $(OBJS) zerotier-* build-* ZeroTierOneInstaller-*
|
2013-11-06 17:06:42 +00:00
|
|
|
|
|
|
|
FORCE:
|