hamncheese/supernode.sh
Scott Duensing c68ec92614 Updating n2n
2023-09-07 18:23:07 -05:00

19 lines
279 B
Bash
Executable file

#!/bin/bash
# Build supernode for current platform.
mkdir -p bin
pushd modules/n2nvpn/n2n
./autogen.sh
./configure --enable-pthread
#--enable-miniupnp --enable-natpmp
make
#supernode
mv supernode ../../../bin/.
mv edge ../../../bin/.
#make clean
#rm include/config.h
popd