Usability
[llpp.git] / tbs
blob140ffc03dcbedbe0bc2011c6b80c2af98c3cce8c
1 #!/bin/sh
3 #set -x
4 set -e
6 h=$(readlink -f $(dirname $0))
7 t=$(readlink -f ..)/tbs
8 d=MD5
10 export OCAMLRUNPARAM=b
12 if test $h = $PWD; then
13 mkdir -p build
14 cd build
17 if ! md5sum --status -c $d; then
18 md5sum $h/build.ml $h/tbs $t/tbs.cma >$d.tmp
19 ocamlc.opt -o build.cmo -c -g -I $t $h/build.ml
20 ocamlc.opt -g -thread -I $t unix.cma threads.cma tbs.cma build.cmo -o b
21 mv $d.tmp $d
24 mupdf=/home/malc/x/rcs/svn/sumatrapdf-read-only/mupdf
25 mupdf=/home/malc/x/rcs/git/mupdf
26 ccopt="-std=c89 -Wall -Werror"
27 ccopt="$ccopt -I$mupdf/fitz -I$mupdf/pdf -I$mupdf/xps -I$mupdf/cbz"
28 ccopt="$ccopt $(freetype-config --cflags) -include ft2build.h"
29 targets="llpp"
30 libs="-lfitz"
31 libs="$libs -lopenjpeg -ljbig2dec -ljpeg -lz -lfreetype -lX11"
32 if test $(hostname) = "linmac"; then
33 cc=gcc-4.6.0
34 #ccopt="$ccopt -maltivec -O -D_GNU_SOURCE"
35 ccopt="$ccopt -maltivec -D_GNU_SOURCE"
36 else
37 cc=cc
38 ccopt="$ccopt -O -D_GNU_SOURCE -fPIC"
41 lpath=$mupdf/build/release
43 ./b -O src:$h -r -O ccopt:"$ccopt" -O cc:"$cc" \
44 -O "mupdflibpath:$lpath" \
45 -O "libs:$libs" \
46 $* $targets