1 ## Process this file with automake to produce Makefile.in
6 noinst_LTLIBRARIES = libcharset.la
8 libcharset_la_SOURCES = \
25 charset_alias = $(DESTDIR)$(libdir)/charset.alias
26 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
27 install-exec-local: all-local
28 $(mkinstalldirs) $(DESTDIR)$(libdir)
29 if test -f $(charset_alias); then \
30 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
31 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
32 rm -f $(charset_tmp) ; \
34 if test @GLIBC21@ = no; then \
35 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
36 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
37 rm -f $(charset_tmp) ; \
41 uninstall-local: all-local
42 if test -f $(charset_alias); then \
43 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
44 if grep '^# Packages using this file: $$' $(charset_tmp) \
46 rm -f $(charset_alias); \
48 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
50 rm -f $(charset_tmp); \
53 charset.alias: config.charset
54 $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
57 all-local: ref-add.sed ref-del.sed charset.alias
61 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
64 CLEANFILES = charset.alias ref-add.sed ref-del.sed