]> git.street.me.uk Git - andy/viking.git/blob - win32/configure_and_make-wine.sh
Move man files from doc to help directory so they will be included in the output...
[andy/viking.git] / win32 / configure_and_make-wine.sh
1 #!/bin/bash
2 # License: CC0
3
4 # First ensure we have a configure script:
5 rm -rf ../src/.deps
6 rm -rf ../src/icons/.deps
7 pushd ..
8 ./autogen.sh
9 make distclean
10 popd
11
12 # Note the configure stage under wine** is really slow can easily be over 15 minutes
13 # make of the icons is also very slow** - can easily over 5 minutes
14 # compartively the make of the actual src code is not too bad
15 wine cmd.exe /c configure_and_make.bat
16
17 # ** slowness is probably due to lots of forking going on starting many new small processes