mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
8 lines
280 B
Bash
Executable file
8 lines
280 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
sample=$1
|
|
|
|
[ -e ../x-tools/$sample ] && echo "Already built: $sample" && exit
|
|
HOME=$(dirname $PWD) CT_PREFIX=$(dirname $PWD)/toolchains ./ct-ng $sample
|
|
yes '' | HOME=$(dirname $PWD) CT_PREFIX=$(dirname $PWD)/toolchains ./ct-ng build.$(nproc)
|
|
rm -rf .build/$sample
|