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.
20 lines
459 B
20 lines
459 B
#!/bin/bash |
|
|
|
# Builds Zerotier-One and libraries required for Network Containers, then |
|
# copies the binaries into the test directory. |
|
|
|
cd ../../ |
|
make clean |
|
make one |
|
make netcon |
|
cd netcon/docker-test |
|
|
|
cp ../../zerotier-cli zerotier-cli |
|
cp ../../zerotier-netcon-service zerotier-netcon-service |
|
cp ../../libzerotierintercept.so libzerotierintercept.so |
|
|
|
cp ../liblwip.so liblwip.so |
|
cp ../zerotier-intercept zerotier-intercept |
|
|
|
cp ../../zerotier-one zerotier-one |
|
|
|
|