6aec628ab0
- updated and reorganized database schema files - changed config files to show new immunity rules - updated sql-admin-manager so it can update+create tables - added compile.sh file for building plugins in batch - deprecated the old admin-cache immunity api relying on ImmunityType - added a new sm_config table to the schema for storing version numbers --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401409
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test -e compiled || mkdir compiled
|
|
|
|
for sourcefile in *.sp
|
|
do
|
|
smxfile="`echo $sourcefile | sed -e 's/\.sp$/\.smx/'`"
|
|
echo -n "Compiling $sourcefile ..."
|
|
./spcomp $sourcefile -ocompiled/$smxfile
|
|
done
|
|
|