1
0
forked from 0ad/0ad
0ad/source/workspaces/update-workspaces.sh
olsner 9210297729 Unix/Linux update script
This was SVN commit r408.
2004-06-07 10:45:48 +00:00

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 ..