1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/glib.mk
5 -DLIBDIR=\"$(libdir)\" \
8 noinst_LTLIBRARIES += libcharset.la
10 libcharset_la_CFLAGS = $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
11 libcharset_la_SOURCES = \
27 charset_alias = $(DESTDIR)$(libdir)/charset.alias
28 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
29 install-exec-local: all-local
30 $(mkinstalldirs) $(DESTDIR)$(libdir)
31 if test -f $(charset_alias); then \
32 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
33 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
34 rm -f $(charset_tmp) ; \
36 if test @GLIBC21@ = no; then \
37 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
38 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
39 rm -f $(charset_tmp) ; \
43 uninstall-local: all-local
44 if test -f $(charset_alias); then \
45 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
46 if grep '^# Packages using this file: $$' $(charset_tmp) \
48 rm -f $(charset_alias); \
50 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
52 rm -f $(charset_tmp); \
55 charset.alias: config.charset
56 $(AM_V_GEN) $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
59 all-local: ref-add.sed ref-del.sed charset.alias
63 $(AM_V_GEN) $(SED) -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
66 CLEANFILES += charset.alias ref-add.sed ref-del.sed