mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 13:09:57 +00:00
28 lines
543 B
Bash
Executable file
28 lines
543 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Building $(git log -1)"
|
|
echo "---"
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
./tools/make_requests
|
|
./tools/make_makefiles
|
|
autoreconf
|
|
|
|
cd build64
|
|
../configure -q -C --enable-win64 --enable-werror --with-mingw
|
|
make -s -j$(nproc)
|
|
cd ..
|
|
|
|
cd build32
|
|
../configure -q -C --enable-werror --with-mingw
|
|
make -s -j$(nproc)
|
|
cd ..
|
|
|
|
if ! test -s .git/rebase-merge/git-rebase-todo
|
|
then
|
|
make -s -j$(nproc) -C build32 install-lib install-test DESTDIR=$BASEDIR
|
|
make -s -j$(nproc) -C build64 install-lib install-test DESTDIR=$BASEDIR
|
|
fi
|
|
|
|
git reset --hard
|