scyther/src/build.sh
2023-11-08 15:04:19 +00:00

28 lines
511 B
Bash
Executable File

#!/bin/sh
# Store version number in version.h
./describe-version.py
# Different choice if on Darwin
PLATFORM=`uname`
echo "Platform: $PLATFORM"
if [ "$PLATFORM" = "Darwin" ]; then
ARCH=`arch`
echo "Architecture: $ARCH"
if [ "$ARCH" = "arm64" ]; then
./subbuild-mac-arm.sh
else
./subbuild-mac-intel.sh
fi
else
if [ "$PLATFORM" = "Linux" ]; then
# Build linux version
./subbuild-unix-unix.sh
else
echo "I don't know platform $PLATFORM, so I won't do anything"
fi
fi