1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 01:46:38 +02:00
Files
unrealircd/velcro/build
T
stskeeps 77317ec9f7 - Added HookAddCfg as a more typesafe way to add
HOOKTYPE_CONFIGRUN/CONFIGTEST. Was needed for Velcro and possibly other
  situations
- Some more Velcro changes to make it fit into 3.3
2007-06-06 15:36:40 +00:00

9 lines
315 B
Python
Executable File

#!/bin/sh
echo --- Preprocessing $1 ..
../velcro/precompile $1
echo --- Building dependancies for $1
cat $1.depends | ../velcro/epl ../velcro/build
echo --- Building $1
g++ -Wall -DDYNAMIC_LINKING -fPIC -DPIC -shared -export-dynamic -I../extras/regexp/include -I../include -o $1.so $1.cc
echo --- Done building $1