summaryrefslogtreecommitdiff
path: root/Makefile.mac
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.mac')
-rw-r--r--Makefile.mac6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.mac b/Makefile.mac
index 89203243..bace24b2 100644
--- a/Makefile.mac
+++ b/Makefile.mac
@@ -20,12 +20,16 @@ LIBS=ext/bin/libcrypto/mac-x86_combined/libcrypto.a
include objects.mk
-all: one launcher mac-tap
+all: one cli launcher mac-tap
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