dvitomp fix from Akira
[mplib] / build.cross
1 #!/bin/sh
2 # $Id$
3 #
4 # Copyright 2008 Taco Hoekwater.
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>
18 #
19 #
20 # cross-compile on linux using mingw32 for windows
21
22 MAKE=make
23 STRIP=strip
24 PATH=/usr/mingw32/mingw32/bin:$PATH
25
26 rm -rf build-win
27 mkdir build-win
28 mkdir build-win/texk
29 cd build-win/texk
30
31 ../../src/texk/configure --host=i386-linux --enable-shared=no || exit 1 
32 # make the kpathsea library
33 (cd kpathsea && $MAKE ../kpathsea/libkpathsea.la ) || exit 1
34
35 # make the library
36 mkdir web2c/mpdir
37 cd web2c/mpdir
38 (../../../../src/texk/web2c/mpdir/configure \
39     --host=i386-linux --enable-shared=no -enable-lua=no ; $MAKE )|| exit 1 
40
41 # strip them
42 $STRIP mpost.exe
43 cd ../../../..
44 # show the results
45 ls -l build-win/texk/web2c/mpdir/mpost.exe
46
47