2004-01-31 23:56:22 +03:00
|
|
|
#!/bin/bash
|
2004-02-15 05:33:49 +03:00
|
|
|
|
2004-03-07 17:38:39 +03:00
|
|
|
# AMX Mod X
|
2004-02-15 05:33:49 +03:00
|
|
|
#
|
2004-03-07 17:38:39 +03:00
|
|
|
# by the AMX Mod X Development Team
|
|
|
|
# originally developed by OLO
|
|
|
|
#
|
|
|
|
# This file is part of AMX Mod X.
|
2004-02-15 05:33:49 +03:00
|
|
|
|
2004-09-17 10:11:14 +04:00
|
|
|
# new code contributed by \malex\
|
|
|
|
|
2004-01-31 23:56:22 +03:00
|
|
|
test -e compiled || mkdir compiled
|
2005-10-29 06:13:29 +04:00
|
|
|
rm temp.txt
|
2004-09-17 10:11:14 +04:00
|
|
|
|
|
|
|
for sourcefile in *.sma
|
|
|
|
do
|
|
|
|
amxxfile="`echo $sourcefile | sed -e 's/\.sma$/.amxx/'`"
|
|
|
|
echo -n "Compiling $sourcefile ..."
|
2005-08-18 11:05:33 +04:00
|
|
|
./amxxpc $sourcefile -ocompiled/$amxxfile >> temp.txt
|
2004-09-17 10:11:14 +04:00
|
|
|
echo "done"
|
|
|
|
done
|
|
|
|
|
|
|
|
less temp.txt
|
2004-09-17 04:51:20 +04:00
|
|
|
rm temp.txt
|