summaryrefslogtreecommitdiff
path: root/build/server-bin.sh
blob: f5084f218ae2a14436b3c26fe2407d7032c28d5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash

export LOCALDIR="../server-local/bin"
cd ../../server-code
echo Build server...
make clean
./build.sh static

if [[ $? == 0 ]]; then
    echo Copy server binaries...
    cp -f char-server $LOCALDIR
    cp -f login-server $LOCALDIR
    cp -f map-server $LOCALDIR
    cp -f mapcache $LOCALDIR
else
    echo Build failed
    exit 1
fi

cd src/evol
mkdir build
echo Build evol plugin...
autoreconf -i
cd build
make clean
../configure
make -j3

if [[ $? == 0 ]]; then
    cd ..
    echo Copy plugin binaries...
    mkdir ../../../server-local/bin/plugins
    cp -f build/src/.libs/*.so ../../../server-local/bin/plugins
    echo Build success
else
    cd ..
    echo Build failed
    exit 1
fi