mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
6 lines
127 B
Bash
6 lines
127 B
Bash
#!/usr/bin/env bash
|
|
mkdir ../../build
|
|
|
|
./configure --prefix="${PWD}/../../build" || exit $?
|
|
make install -j2 || exit $?
|
|
exit $? |