mirror of
https://github.com/netchx/netch.git
synced 2026-05-11 23:45:06 +08:00
7 lines
129 B
Bash
7 lines
129 B
Bash
#!/usr/bin/env bash
|
|
mkdir -p "${PWD}/../../build"
|
|
|
|
./configure --prefix="${PWD}/../../build" || exit $?
|
|
|
|
make install -j2
|
|
exit $? |