diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-05 16:06:16 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-05 16:06:16 -0400 |
commit | a7c4cbe53aad51b3e74fa9cb1af975cb8d356954 (patch) | |
tree | e4578c51ea7239aeaf5dd6ebcaa844a0fb00f9ea /Makefile.linux | |
parent | 3368330b777da9561539c04ea589aa7060e1d569 (diff) | |
download | infinitytier-a7c4cbe53aad51b3e74fa9cb1af975cb8d356954.tar.gz infinitytier-a7c4cbe53aad51b3e74fa9cb1af975cb8d356954.zip |
CLI debugging, got rid of nasty old Thread class and replaced with newer cleaner portable idiom.
Diffstat (limited to 'Makefile.linux')
-rw-r--r-- | Makefile.linux | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.linux b/Makefile.linux index fef28474..c014ce9c 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -24,12 +24,16 @@ LIBS=ext/bin/libcrypto/linux-$(ARCH)/libcrypto.a -lm -ldl include objects.mk -all: one launcher +all: one cli launcher 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 |