Makefile.in: Rebuilt.

* Makefile.in: Rebuilt.
	* Makefile.am: Include deps.mk.
	(GCJCOMPILE): Added -MD, -MT, and -MF.
	($(javao_files)): Don't depend on libgcj.zip.
	(all-recursive): New target.
	(%.lo:%.cc): Do dependency tracking.
	($(nat_headers)): Don't depend on libgcj.zip.
	* configure: Rebuilt.
	* configure.in: Make .d files and deps.mk.

From-SVN: r36982
This commit is contained in:
Tom Tromey 2000-10-20 21:21:37 +00:00 committed by Tom Tromey
parent 316a06a103
commit 480222b54f
5 changed files with 171 additions and 49 deletions

21
libjava/configure vendored
View file

@ -5848,6 +5848,7 @@ fi
here=`pwd`
trap '' 1 2 15
cat > confcache <<\EOF
# This file is a shell script that caches the results of configure
@ -6347,6 +6348,26 @@ test -z "$CONFIG_HEADERS" || echo timestamp > include/stamp-h
if test -n "$CONFIG_FILES"; then
ac_file=Makefile . ${libgcj_basedir}/../config-ml.in
fi
# Make subdirectories and `.d' files. Look in both srcdir and
# builddir for the .java files.
h=`pwd`
: > deps.mk
( (cd $srcdir && find . -name '*.java' -print) ;
find . -name '*.java' -print) | \
fgrep -v testsuite | \
sed -e 's/\.java/.d/' | \
while read f; do
echo "include $f" >> deps.mk
test -f $f || {
d=`echo $f | sed -e 's,/[^/]*$,,'`
$srcdir/../mkinstalldirs $d
: > $f
}
done
exit 0
EOF
chmod +x $CONFIG_STATUS