summaryrefslogtreecommitdiff
path: root/os/windows/_domake.sh
blob: 05625ff4bb6227c3078af60871a51940bf5d53a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

set -e

cd "$2"
cd ../..
if [ -e "fio.exe" ]; then
  make clean
fi

if [ "$1" = "x86" ]; then
  ./configure --disable-native --build-32bit-win
else
  ./configure --disable-native
fi

make -j