Windows: update dobuild.cmd to run the configure/make
[fio.git] / os / windows / _domake.sh
CommitLineData
38c2f938
RC
1#!/usr/bin/env bash
2
3set -e
4
5cd "$2"
6cd ../..
7if [ -e "fio.exe" ]; then
8 make clean
9fi
10
11if [ "$1" = "x86" ]; then
12 ./configure --disable-native --build-32bit-win
13else
14 ./configure --disable-native
15fi
16
17make -j