diff options
author | Mark Wielaard <mark@klomp.org> | 2003-08-24 18:10:55 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2003-08-24 18:10:55 +0000 |
commit | 49283ed11185aae632bb49e3d51e4750ce3ed1f0 (patch) | |
tree | f7f7c007e4e375a0b6b67df29541d8e884511ae7 /lib | |
parent | 1b85911b1cead4765f7ce09cb79a0aa87f1214ac (diff) | |
download | classpath-49283ed11185aae632bb49e3d51e4750ce3ed1f0.tar.gz |
* configure.in (AC_INIT): Use four argument version.
(AC_CONFIG_SRCDIR): New to explicitly set src dir.
(AM_INIT_AUTOMAKE): Use zero argument version.
(AC_SUBST): Only set LIBVERSION explicitly. Removed variables
PACKAGE, VERSION which are substituted implicitly.
(AM_DISABLE_STATIC): Renamed to AC_DISABLE_STATIC.
(AC_DISABLE_STATIC): Renamed from AM_DISABLE_STATIC.
(AM_PROG_LIBTOOL): Renamed to AC_PROG_LIBTOOL.
(AC_PROG_LIBTOOL: Renamed from AM_PROG_LIBTOOL.
(--enable-jni): Default to yes.
* config.guess: New version from libtoolize --force --copy.
* config.sub: Likewise.
* ltmain.sh: Likewise.
* HACKING: Document that libtool 1.5a works.
* lib/Makefile.am (MAINTAINERCLEANFILES): Renamed to CLEANFILES.
(CLEANFILES): New variable renamed from MAINTAINERCLEANFILES with
glibj.zip and classes.1 added.
(maintainer-clean-local): Renamed to clean-local.
(clean-local): Renamed from maintainer-clean-local.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 7ce44d8c4..ce064e9a0 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,3 @@ -# We do not really support building with javac anymore but we can -# resurrect this... -# --cbj ## used by automake to generate Makefile.in ##PERL = @PERL@ @@ -124,12 +121,10 @@ compile-classes: classes $(JAVA_SRCS) Makefile touch compile-classes EXTRA_DIST = standard.omit mkcollections.pl.in -## not sure if we want to let the user easily get rid of glibj.zip -## CLEANFILES = glibj.zip -DISTCLEANFILES = -MAINTAINERCLEANFILES = compile-classes resources classes $(JAVA_DEPEND) +CLEANFILES = compile-classes resources classes glibj.zip classes.1 \ + $(JAVA_DEPEND) -maintainer-clean-local: +clean-local: -rm -rf gnu -rm -rf java -rm -rf javax |