Files
netch/Other/simple-obfs/build.sh
Connection Refused b4b7bd9e62 [Other] Update build.sh
2021-09-26 21:18:38 +08:00

10 lines
357 B
Bash

#!/usr/bin/env bash
git submodule update --init || exit $?
./autogen.sh || exit $?
./configure --disable-documentation --with-ev="${PWD}/../../build" || exit $?
make -j2 || exit $?
gcc $(find src/ -name "obfs_local-*.o") $(find . -name "*.a" ! -name "*.dll.a") "${PWD}/../../build/lib/libev.a" -o simple-obfs -fstack-protector -static -lws2_32 -s
exit $?