mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
10 lines
357 B
Bash
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 $? |