mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-29 09:47:01 +00:00
9210297729
This was SVN commit r408.
19 lines
367 B
Bash
Executable File
19 lines
367 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd premake
|
|
|
|
premake --target gnu
|
|
|
|
cd ../gcc
|
|
mv -f ../premake/Makefile ../premake/prometheus.make .
|
|
|
|
# These files need to be linked; premake makefiles assume that the
|
|
# lua file is accessible from the makefile directory
|
|
|
|
ln -f -s ../premake/premake.lua ../premake/functions.lua .
|
|
if [ -x ../premake/premake ]; then
|
|
ln -f -s ../premake/premake .
|
|
fi
|
|
|
|
cd ..
|