mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-02 01:46:38 +02:00
77317ec9f7
HOOKTYPE_CONFIGRUN/CONFIGTEST. Was needed for Velcro and possibly other situations - Some more Velcro changes to make it fit into 3.3
9 lines
315 B
Python
Executable File
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
|