[kaffe] CVS kaffe (robilad): Fixed make dist
Kaffe CVS
cvs-commits at kaffe.org
Mon Jan 24 02:18:10 PST 2005
PatchSet 5911
Date: 2005/01/24 10:12:53
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Fixed make dist
2005-01-24 Dalibor Topic <robilad at kaffe.org>
* libraries/javalib/Makefile.am.in (EXTRA_DIST, jarlib_DATA):
Added installed_properties.
(installed_properties): Moved loggig.properties there.
* configure.ac (AM_INIT_AUTOMAKE): Use new form of invoking it.
Pass tar option to set support for long file names in tar archives.
Members:
ChangeLog:1.3450->1.3451
aclocal.m4:1.117->1.118
configure:1.412->1.413
configure.ac:1.103->1.104
libraries/javalib/Makefile.am:1.296->1.297
libraries/javalib/Makefile.am.in:1.32->1.33
libraries/javalib/Makefile.in:1.378->1.379
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3450 kaffe/ChangeLog:1.3451
--- kaffe/ChangeLog:1.3450 Sun Jan 23 23:14:19 2005
+++ kaffe/ChangeLog Mon Jan 24 10:12:53 2005
@@ -1,5 +1,14 @@
2005-01-24 Dalibor Topic <robilad at kaffe.org>
+ * libraries/javalib/Makefile.am.in (EXTRA_DIST, jarlib_DATA):
+ Added installed_properties.
+ (installed_properties): Moved loggig.properties there.
+
+ * configure.ac (AM_INIT_AUTOMAKE): Use new form of invoking it.
+ Pass tar option to set support for long file names in tar archives.
+
+2005-01-24 Dalibor Topic <robilad at kaffe.org>
+
* libraries/clib/Makefile.am (SUBDIRS): Fix for make dist. Made
libxmlj really be picked up.
Index: kaffe/aclocal.m4
diff -u kaffe/aclocal.m4:1.117 kaffe/aclocal.m4:1.118
--- kaffe/aclocal.m4:1.117 Wed Dec 22 19:04:37 2004
+++ kaffe/aclocal.m4 Mon Jan 24 10:12:55 2005
@@ -886,6 +886,34 @@
AC_DEFUN([_AM_IF_OPTION],
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+# Copyright (C) 2001, 2003 Free Software Foundation, Inc. -*- Autoconf -*-
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# AM_RUN_LOG(COMMAND)
+# -------------------
+# Run COMMAND, save the exit status in ac_status, and log it.
+# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
+AC_DEFUN([AM_RUN_LOG],
+[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
+ (exit $ac_status); }])
+
#
# Check to make sure that the build environment is sane.
#
Index: kaffe/configure
diff -u kaffe/configure:1.412 kaffe/configure:1.413
--- kaffe/configure:1.412 Thu Jan 20 20:56:26 2005
+++ kaffe/configure Mon Jan 24 10:12:56 2005
@@ -1979,8 +1979,8 @@
# Define the identity of the package.
- PACKAGE=kaffe
- VERSION=1.1.x-cvs
+ PACKAGE='kaffe'
+ VERSION='1.1.x-cvs'
cat >>confdefs.h <<_ACEOF
@@ -2104,7 +2104,88 @@
AMTAR=${AMTAR-"${am_missing_run}tar"}
-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
+
+echo "$as_me:$LINENO: checking how to create a ustar tar archive" >&5
+echo $ECHO_N "checking how to create a ustar tar archive... $ECHO_C" >&6
+# Loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar plaintar pax cpio none'
+_am_tools=${am_cv_prog_tar_ustar-$_am_tools}
+# Do not fold the above two line into one, because Tru64 sh and
+# Solaris sh will not grok spaces in the rhs of `-'.
+for _am_tool in $_am_tools
+do
+ case $_am_tool in
+ gnutar)
+ for _am_tar in tar gnutar gtar;
+ do
+ { echo "$as_me:$LINENO: $_am_tar --version" >&5
+ ($_am_tar --version) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && break
+ done
+ am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
+ am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
+ am__untar="$_am_tar -xf -"
+ ;;
+ plaintar)
+ # Must skip GNU tar: if it does not support --format= it doesn't create
+ # ustar tarball either.
+ (tar --version) >/dev/null 2>&1 && continue
+ am__tar='tar chf - "$$tardir"'
+ am__tar_='tar chf - "$tardir"'
+ am__untar='tar xf -'
+ ;;
+ pax)
+ am__tar='pax -L -x ustar -w "$$tardir"'
+ am__tar_='pax -L -x ustar -w "$tardir"'
+ am__untar='pax -r'
+ ;;
+ cpio)
+ am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
+ am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
+ am__untar='cpio -i -H ustar -d'
+ ;;
+ none)
+ am__tar=false
+ am__tar_=false
+ am__untar=false
+ ;;
+ esac
+
+ # If the value was cached, stop now. We just wanted to have am__tar
+ # and am__untar set.
+ test -n "${am_cv_prog_tar_ustar}" && break
+
+ # tar/untar a dummy directory, and stop if the command works
+ rm -rf conftest.dir
+ mkdir conftest.dir
+ echo GrepMe > conftest.dir/file
+ { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
+ (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ rm -rf conftest.dir
+ if test -s conftest.tar; then
+ { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
+ ($am__untar <conftest.tar) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+ fi
+done
+rm -rf conftest.dir
+
+if test "${am_cv_prog_tar_ustar+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ am_cv_prog_tar_ustar=$_am_tool
+fi
+
+echo "$as_me:$LINENO: result: $am_cv_prog_tar_ustar" >&5
+echo "${ECHO_T}$am_cv_prog_tar_ustar" >&6
@@ -9862,7 +9943,7 @@
;;
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 9865 "configure"' > conftest.$ac_ext
+ echo '#line 9946 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
@@ -11219,7 +11300,7 @@
# Provide some information about the compiler.
-echo "$as_me:11222:" \
+echo "$as_me:11303:" \
"checking for Fortran 77 compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
@@ -12280,11 +12361,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:12283: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:12364: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:12287: \$? = $ac_status" >&5
+ echo "$as_me:12368: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -12523,11 +12604,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:12526: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:12607: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:12530: \$? = $ac_status" >&5
+ echo "$as_me:12611: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -12583,11 +12664,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:12586: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:12667: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:12590: \$? = $ac_status" >&5
+ echo "$as_me:12671: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@@ -14772,7 +14853,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 14775 "configure"
+#line 14856 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -14870,7 +14951,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 14873 "configure"
+#line 14954 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -17067,11 +17148,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:17070: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:17151: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:17074: \$? = $ac_status" >&5
+ echo "$as_me:17155: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -17127,11 +17208,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:17130: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:17211: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:17134: \$? = $ac_status" >&5
+ echo "$as_me:17215: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@@ -18492,7 +18573,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 18495 "configure"
+#line 18576 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -18590,7 +18671,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 18593 "configure"
+#line 18674 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -19427,11 +19508,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:19430: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:19511: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:19434: \$? = $ac_status" >&5
+ echo "$as_me:19515: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -19487,11 +19568,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:19490: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:19571: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:19494: \$? = $ac_status" >&5
+ echo "$as_me:19575: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@@ -21530,11 +21611,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:21533: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:21614: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:21537: \$? = $ac_status" >&5
+ echo "$as_me:21618: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -21773,11 +21854,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:21776: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:21857: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:21780: \$? = $ac_status" >&5
+ echo "$as_me:21861: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -21833,11 +21914,11 @@
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:21836: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:21917: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:21840: \$? = $ac_status" >&5
+ echo "$as_me:21921: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@@ -24022,7 +24103,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 24025 "configure"
+#line 24106 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -24120,7 +24201,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 24123 "configure"
+#line 24204 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -58247,7 +58328,7 @@
if uudecode$EXEEXT Test.uue; then
ac_cv_prog_uudecode_base64=yes
else
- echo "configure: 58250: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
+ echo "configure: 58331: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
echo "configure: failed file was:" >&5
cat Test.uue >&5
ac_cv_prog_uudecode_base64=no
@@ -58365,7 +58446,7 @@
JAVA_TEST=Test.java
CLASS_TEST=Test.class
cat << \EOF > $JAVA_TEST
-/* #line 58368 "configure" */
+/* #line 58449 "configure" */
public class Test {
}
EOF
@@ -58402,7 +58483,7 @@
CLASS_TEST=Test.class
TEST=Test
cat << \EOF > $JAVA_TEST
-/* [#]line 58405 "configure" */
+/* [#]line 58486 "configure" */
public class Test {
public static void main (String args[]) {
System.exit (0);
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.103 kaffe/configure.ac:1.104
--- kaffe/configure.ac:1.103 Thu Jan 20 20:56:33 2005
+++ kaffe/configure.ac Mon Jan 24 10:13:05 2005
@@ -33,7 +33,7 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
])
-AM_INIT_AUTOMAKE(kaffe, 1.1.x-cvs)
+AM_INIT_AUTOMAKE([1.9.3 tar-ustar])
AC_PREFIX_DEFAULT(/usr/local/kaffe)
Index: kaffe/libraries/javalib/Makefile.am
diff -u kaffe/libraries/javalib/Makefile.am:1.296 kaffe/libraries/javalib/Makefile.am:1.297
--- kaffe/libraries/javalib/Makefile.am:1.296 Sun Jan 23 18:49:02 2005
+++ kaffe/libraries/javalib/Makefile.am Mon Jan 24 10:13:06 2005
@@ -48,9 +48,12 @@
BOOTCLASSPATH=$(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
JAR=BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
+installed_properties = \
+ logging.properties
+
jrelib_DATA = \
rt.jar \
- logging.properties
+ $(installed_properties)
Klasses_jar_SRCS = \
$(com_jcraft_jzlib_SRCS) \
@@ -4743,7 +4746,6 @@
EXTRA_DIST = \
Makefile.am.in \
- Klasses.jar.bootstrap \
META-INF \
com \
gnu \
@@ -4756,7 +4758,8 @@
$(OMITTED_PACKAGES_SRCS) \
$(serialized_converters) \
$(gnu_regexp_message_bundles) \
- $(gnu_getopt_message_bundles)
+ $(gnu_getopt_message_bundles) \
+ $(installed_properties)
dist-hook:
rm -rf `find $(distdir) -name CVS`
Index: kaffe/libraries/javalib/Makefile.am.in
diff -u kaffe/libraries/javalib/Makefile.am.in:1.32 kaffe/libraries/javalib/Makefile.am.in:1.33
--- kaffe/libraries/javalib/Makefile.am.in:1.32 Thu Jan 20 20:56:36 2005
+++ kaffe/libraries/javalib/Makefile.am.in Mon Jan 24 10:13:07 2005
@@ -48,9 +48,12 @@
BOOTCLASSPATH=$(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
JAR=BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
+installed_properties = \
+ logging.properties
+
jrelib_DATA = \
rt.jar \
- logging.properties
+ $(installed_properties)
Klasses_jar_SRCS = \
# The following will be replaced by the
@@ -161,7 +164,6 @@
EXTRA_DIST = \
Makefile.am.in \
- Klasses.jar.bootstrap \
META-INF \
com \
gnu \
@@ -174,7 +176,8 @@
$(OMITTED_PACKAGES_SRCS) \
$(serialized_converters) \
$(gnu_regexp_message_bundles) \
- $(gnu_getopt_message_bundles)
+ $(gnu_getopt_message_bundles) \
+ $(installed_properties)
dist-hook:
rm -rf `find $(distdir) -name CVS`
Index: kaffe/libraries/javalib/Makefile.in
diff -u kaffe/libraries/javalib/Makefile.in:1.378 kaffe/libraries/javalib/Makefile.in:1.379
--- kaffe/libraries/javalib/Makefile.in:1.378 Sun Jan 23 18:49:02 2005
+++ kaffe/libraries/javalib/Makefile.in Mon Jan 24 10:13:07 2005
@@ -398,9 +398,12 @@
KAFFELIBRARYPATH = $(top_builddir)/libraries/clib/native/:$(top_builddir)/libraries/clib/io/:$(top_builddir)/libraries/clib/zip/:$(top_builddir)/libraries/clib/nio/:$(top_builddir)/libraries/clib/security/:$(top_builddir)/libraries/clib/classpath/
BOOTCLASSPATH = $(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
JAR = BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
+installed_properties = \
+ logging.properties
+
jrelib_DATA = \
rt.jar \
- logging.properties
+ $(installed_properties)
Klasses_jar_SRCS = \
$(com_jcraft_jzlib_SRCS) \
@@ -5365,7 +5368,6 @@
EXTRA_DIST = \
Makefile.am.in \
- Klasses.jar.bootstrap \
META-INF \
com \
gnu \
@@ -5378,7 +5380,8 @@
$(OMITTED_PACKAGES_SRCS) \
$(serialized_converters) \
$(gnu_regexp_message_bundles) \
- $(gnu_getopt_message_bundles)
+ $(gnu_getopt_message_bundles) \
+ $(installed_properties)
LIBDIR = lib
rebuildLib = ./rebuildLib
More information about the kaffe
mailing list