comparison images/lfs-bootstrap/mnt/build/mpfr.sh @ 0:bcd2e358d57f

Start by copying the existing control image building infrastructure from Aboriginal Linux, and shuffling the layout around a bit.
author Rob Landley <rob@landley.net>
date Sun, 03 Jul 2011 17:23:26 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bcd2e358d57f
1 #!/bin/sh
2
3 # TODO: The --enable-thread-safe here requires TLS
4
5 ./configure --prefix=/usr --docdir=/usr/share/doc/mpfr-3.0.0 &&
6 make -j $CPUS || exit 1
7
8 if [ ! -z "$CHECK" ]
9 then
10 make check || exit 1
11 fi
12
13 make install || exit 1
14
15 if [ ! -z "$DOCS" ]
16 then
17 make html &&
18 make install-html
19 fi