mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-19 10:13:57 +00:00
8da44f1908
This was SVN commit r7011.
13 lines
306 B
Bash
Executable File
13 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd "$(dirname $0)"
|
|
# Now in build/workspaces/ (where we assume this script resides)
|
|
|
|
# Make sure workspaces/gcc exists.
|
|
mkdir -p gcc
|
|
|
|
# Now build premake and run it to create the makefiles
|
|
cd ../premake
|
|
make -C src
|
|
src/bin/premake --outpath ../workspaces/gcc --atlas --collada "$@" --target gnu
|