15 lines
198 B
Bash
Executable file
15 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Build supernode for current platform.
|
|
|
|
mkdir -p bin
|
|
pushd modules/n2nvpn/n2n
|
|
|
|
./autogen.sh
|
|
./configure
|
|
make supernode
|
|
mv supernode ../../../bin/.
|
|
make clean
|
|
rm include/config.h
|
|
|
|
popd
|