22 lines
454 B
Bash
Executable File
22 lines
454 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
cd -- "$(dirname -- "${0}")/../../.."
|
|
|
|
if [ -z "${cc_path}" ]; then
|
|
cc_path="/usr/local/bin/gcc12"
|
|
fi
|
|
|
|
mk_slunk() {
|
|
gmake -B CC="${cc_path}" CPU=${1} MARCH=${3} MTUNE=${4} STATIC=1 STRIP=1
|
|
cp -vf "frontend/bin/slunkcrypt" "out/slunkcrypt-${2}"
|
|
}
|
|
|
|
rm -rf "out" && mkdir -p "out"
|
|
|
|
gmake CC="${cc_path}" clean
|
|
|
|
mk_slunk 32 "i686" "pentiumpro" "pentium3"
|
|
mk_slunk 64 "x86_64" "x86-64" "nocona"
|
|
|
|
echo "Build completed successfully."
|