Root/
1 | #!/bin/bash␊ |
2 | ␊ |
3 | if [ ! -d lib/updfparser ] ; then␊ |
4 | echo "Some libraries are missing"␊ |
5 | echo "You must run this script at the top of libgourou working direcotry."␊ |
6 | echo "./lib/setup.sh must be called first (make all)"␊ |
7 | exit 1␊ |
8 | fi␊ |
9 | ␊ |
10 | # uPDFParser␊ |
11 | pushd lib/updfparser␊ |
12 | git pull origin master␊ |
13 | make clean all BUILD_STATIC=1 BUILD_SHARED=0␊ |