mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
17 lines
251 B
Bash
Executable File
17 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if ! test -e build_server_ok
|
|
then
|
|
./switch_build.sh server
|
|
autoreconf || true
|
|
automake --add-missing || true
|
|
libtoolize || true
|
|
autoreconf --install
|
|
./configure
|
|
touch build_server_ok
|
|
fi
|
|
./switch_build.sh server
|
|
make
|
|
make dist |