mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-30 16:41:34 +00:00
9 lines
172 B
Bash
Executable file
9 lines
172 B
Bash
Executable file
#!/bin/sh -ex
|
|
|
|
cd build
|
|
|
|
if [[ "${MACOS_AMD64}" ]]; then
|
|
arch -x86_64 make -j $(sysctl -n hw.logicalcpu) package
|
|
else
|
|
make -j $(sysctl -n hw.logicalcpu) package
|
|
fi
|