summaryrefslogtreecommitdiff
path: root/build/server-bin.sh
blob: b81ce8f8ee82492a9b7e1bfbfd1121e1c81a1b25 (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
#!/bin/bash

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

if [[ $? == 0 ]]; then
    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
autoreconf -i
cd build
make clean
../configure
make -j3
cd ..

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