Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gensources.sh « build « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eb4995bdd80c6569867178350c70fdaad71a2b6 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#! /bin/sh

outfile=$1
incfile=$2
excfile=$3
extfile=$4
extexcfile=$5

process_includes_1() {
    sed -e '/^[ \t]*$/d' -e '/^[ \t]*#/d' $1 > $2
    if cmp -s $1 $2; then
	false
    else
	sed -n 's,^[ \t]*#include ,,p' $1 |
	while read inc; do
	    cat $inc >> $2
	    echo $outfile: $inc >> $outfile.makefrag
	    echo $inc: >> $outfile.makefrag
	done
    fi
}

process_includes() {
    i=$1; o=$2; t=${2}.tmp
    while process_includes_1 $i $o; do
	mv $o $t
	i=$t
    done
    rm -f $t
}

rm -f $outfile.makefrag

process_includes $incfile $outfile.inc

if test x$extfile != x -a -f "$extfile"; then
	process_includes $extfile $outfile.ext.inc
	cat $outfile.ext.inc >> $outfile.inc
	rm -f $outfile.ext.inc
fi

sort -u $outfile.inc > $outfile.inc_s
rm -f $outfile.inc


if test -n "$excfile"; then
    process_includes $excfile $outfile.exc
fi

if test -n "$extexcfile"; then
    process_includes $extexcfile $outfile.ext_exc
	cat $outfile.ext_exc >> $outfile.exc
	rm -f $outfile.ext_exc
fi

if test -f $outfile.exc; then
	# So what we're doing below with uniq -u is that we take 
	# lines that have not been duplicated. This computes the 
	# symmetric difference between the files. This is not
	# what we want. If a file is in the excludes but not in
	# the sources, we want that file not to show up. By duplicating the
	# excludes, we ensure that we won't end up in this failure state.
	sort -u $outfile.exc > $outfile.exc_s

	# Duplicate excludes
	cat $outfile.exc_s >> $outfile.exc_s_dup
	cat $outfile.exc_s >> $outfile.exc_s_dup

	rm -f $outfile.exc $outfile.exc_s

	cat $outfile.inc_s $outfile.exc_s_dup | sort | uniq -u > $outfile
	rm -f $outfile.inc_s $outfile.exc_s_dup
else
	mv $outfile.inc_s $outfile
fi