summaryrefslogtreecommitdiff
path: root/bin/update_pch.sh
blob: 95457e561d32134bef7a00e78a1f6bafc12d8e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#! /bin/bash
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

# Usage: update_pch.sh [<module>/inc/pch/precompiled_xxx.hxx]
# Usage: update_pch.sh [<module>]
# Invoke: make cmd cmd="./bin/update_pch.sh [..]"

root=`dirname $0`
root=`cd $root/.. && pwd`
cd $root

if test -z "$1"; then
    headers=`ls ./*/inc/pch/precompiled_*.hxx`
else
    headers="$@"
fi

# Split the headers into an array.
IFS=' ' read -a aheaders <<< $headers
hlen=${#aheaders[@]};
if [ $hlen -gt 1 ]; then
    if [ -z "$PARALLELISM" ]; then
        PARALLELISM=0 # Let xargs decide
    fi
    echo $headers | xargs -n 1 -P $PARALLELISM $0
    exit $?
fi

for x in $headers; do
    if [ -d "$x" ]; then
        # We got a directory, find pch files to update.
        headers=`find $root/$x/ -type f -iname "precompiled_*.hxx"`
        $0 "$headers"
    else
        header=$x
        echo updating `echo $header | sed -e s%$root/%%`
        module=`readlink -f $header | sed -e s%$root/%% -e s%/.*%%`
        libname=`echo $header | sed -e s/.*precompiled_// -e s/\.hxx//`

        ./bin/update_pch "$module" "$libname"
    fi
done

#echo Done.
exit 0