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.
46 lines
1.3 KiB
46 lines
1.3 KiB
CC=gcc |
|
CXX=g++ |
|
|
|
INCLUDES=-Iext/bin/libcrypto/include |
|
ARCH=$(shell uname -m) |
|
DEFS=-DZT_ARCH="$(ARCH)" -DZT_OSNAME="linux" -DZT_TRACE |
|
|
|
# Uncomment for a release optimized build |
|
#CFLAGS=-Wall -O3 -fno-unroll-loops -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) |
|
#STRIP=strip --strip-all |
|
|
|
# Uncomment for a debug build |
|
CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE $(DEFS) |
|
STRIP=echo |
|
|
|
CXXFLAGS=$(CFLAGS) -fno-rtti |
|
|
|
# We statically link against libcrypto because RedHat-derived distributions do |
|
# not ship the elliptic curve algorithms. If we didn't we'd have to build |
|
# separate binaries for the RedHat and Debian universes to distribute via |
|
# auto-update. This way we get one Linux binary for all systems of a given |
|
# architecture. |
|
LIBS=ext/bin/libcrypto/linux-$(ARCH)/libcrypto.a -lm -ldl |
|
|
|
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 |
|
|
|
clean: |
|
rm -f $(OBJS) zerotier-*
|
|
|