diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ChangeLog | 6 | ||||
-rw-r--r-- | lib/Makefile.am | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index f40e1b3..c5a54ce 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2002-05-18 Bruno Haible <bruno@clisp.org> + + * Makefile.am (RM): New variable. + (install-exec-am): Depend on install-exec-clean. + (install-exec-clean): New rule. + 2002-05-09 Bruno Haible <bruno@clisp.org> * config.charset: Update for newest glibc. Add canonical names diff --git a/lib/Makefile.am b/lib/Makefile.am index 97c487a..2c4b893 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -19,6 +19,8 @@ AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies +RM = rm -f + lib_LTLIBRARIES = libgettextlib.la # Sources that are compiled on all platforms. @@ -95,6 +97,11 @@ libgettextlib_la_LDFLAGS = \ -release @VERSION@ \ @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined +# No need to install libgettextlib.a. +install-exec-am: install-exec-clean +install-exec-clean: + $(RM) $(DESTDIR)$(libdir)/libgettextlib.a + # Extra files to be installed. gettextsrcdir = $(datadir)/gettext |