7 lines
109 B
Bash
7 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm ../Makefile
|
||
|
ln -s ./build/Makefile ../Makefile
|
||
|
set -o errexit
|
||
|
. env_kunlun2.sh && make -C ..
|