summaryrefslogtreecommitdiff
path: root/libjava/classpath/lib/split-for-gcj.sh
blob: 4130d56648a07a3e38610d26a28fd16b1103fefd (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
#! /bin/sh

# This script is used when compiling Classpath with gcj.  The idea is
# to compile one package at a time, and only recompile packages when
# actually required.

# We build java->class by package so we need to know what .java files
# correspond to what package.

# We have a .stamp file for each package; this is the makefile target.
# We also have a .list file for each package, which lists all the
# input files in that package.

# gen-classlist.sh makes a list of all the .java files we are going to compile.

# This script generates Makefile.deps, which looks like this:
# 
# java/awt/AWTUtilities.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/AWTUtilities.java
# java/awt/BitMaskExtent.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/BitMaskExtent.java
# java/awt/BitwiseXORComposite.class: lists/java-awt.stamp
# lists/java-awt.list: /home/aph/gcc/gcc/libjava/classpath/gnu/java/awt/BitwiseXORComposite.java

echo "Splitting for gcj"
rm -f Makefile.dtmp > /dev/null 2>&1
test -d lists || mkdir lists
# Much more efficient to do processing outside the loop...
# The first expression computes the .class file name.
# We only want the first three package components, and
# we want them separated by '-'; this is the remaining expressions.
sed -e 's, \(.*\)[.]java$, \1.java \1.class,' \
   -e 's,^\([^/ ]*\)/\([^/ ]*\) ,\1-\2 ,' \
   -e 's,^\([^/ ]*\)/\([^/ ]*\)/\([^/ ]*\) ,\1-\2-\3 ,' \
   -e 's,^\([^/ ]*\)/\([^/ ]*\)/\([^/ ]*\)/[^ ]* ,\1-\2-\3 ,' \
   classes.2 |
while read pkg dir file f2; do
   list=lists/$pkg
   echo "$dir/$file" >> ${list}.list.1

   echo "$f2: ${list}.stamp" >> Makefile.dtmp
   echo "${list}.list: $dir/$file" >> Makefile.dtmp
done

# Only update a .list file if it changed.
for file in lists/*.list.1; do
   real=`echo "$file" | sed -e 's/.1$//'`
   if cmp -s $real $file; then
      rm $file
   else
      mv $file $real
   fi
done

# If we were run we must update Makefile.deps.
mv Makefile.dtmp Makefile.deps