Update from libc.
[gnulib.git] / lib / Makefile.am
1 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
2
3 AUTOMAKE_OPTIONS = ../src/ansi2knr
4
5 noinst_LIBRARIES = libfetish.a
6
7 INCLUDES = -I.. -I$(srcdir) -I../intl
8 DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
9
10 libfetish_a_SOURCES = \
11   getdate.y posixtm.c addext.c argmatch.c backupfile.c basename.c \
12   canon-host.c closeout.c diacrit.c dirname.c exclude.c filemode.c \
13   full-write.c getopt.c getopt1.c getstr.c getugroups.c hard-locale.c hash.c \
14   human.c idcache.c isdir.c linebuffer.c localcharset.c long-options.c \
15   makepath.c mbswidth.c md5.c memcasecmp.c memcoll.c modechange.c \
16   path-concat.c \
17   quote.c quotearg.c readtokens.c safe-read.c same.c save-cwd.c \
18   savedir.c sha.c stripslash.c unicodeio.c userspec.c version-etc.c xgetcwd.c \
19   xgethostname.c xmalloc.c xstrdup.c xstrtod.c xstrtol.c xstrtoul.c \
20   xstrtoumax.c yesno.c
21
22 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
23 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
24
25 noinst_HEADERS = \
26   argmatch.h backupfile.h bumpalloc.h closeout.h diacrit.h dirname.h error.h \
27   exclude.h filemode.h fnmatch.h __fpending.h fsusage.h \
28   getdate.h getline.h getopt.h \
29   getstr.h getpagesize.h group-member.h hard-locale.h hash.h human.h lchown.h \
30   linebuffer.h long-options.h mbswidth.h md5.h memcasecmp.h memcoll.h \
31   makepath.h mbswidth.h modechange.h mountlist.h nanosleep.h obstack.h \
32   path-concat.h pathmax.h posixtm.h quote.h quotearg.h readtokens.h \
33   readutmp.h regex.h safe-read.h same.h save-cwd.h savedir.h sha.h \
34   strverscmp.h unicodeio.h version-etc.h xalloc.h xstrtod.h xstrtol.h
35
36 BUILT_SOURCES = getdate.c lstat.c stat.c
37 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
38 DISTCLEANFILES = lstat.c stat.c
39
40 EXTRA_DIST = xstat.in config.charset ref-add.sin ref-del.sin
41 lstat.c: xstat.in
42         sed \
43           -e '/@IGNORE@/d' \
44           -e 's/@xstat@/lstat/g' \
45           -e '/_LSTAT_ONLY@/d' \
46           -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
47           $(srcdir)/xstat.in > $@-t
48         mv $@-t $@
49
50 stat.c: xstat.in
51         sed \
52           -e '/@IGNORE@/d' \
53           -e 's/@xstat@/stat/g' \
54           -e '/_STAT_ONLY@/d' \
55           -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
56           $(srcdir)/xstat.in > $@-t
57         mv $@-t $@
58
59
60 # The following is needed in order to install a simple file in $(libdir)
61 # which is shared with other installed packages. We use a list of referencing
62 # packages so that "make uninstall" will remove the file if and only if it
63 # is not used by another installed package.
64 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
65 # avoid installing it.
66
67 all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c
68
69 charset_alias = $(DESTDIR)$(libdir)/charset.alias
70 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
71 install-exec-local: all-local
72         $(mkinstalldirs) $(DESTDIR)$(libdir)
73         if test -f $(charset_alias); then \
74           sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
75           $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
76           rm -f $(charset_tmp) ; \
77         else \
78           if test @GLIBC21@ = no; then \
79             sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
80             $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
81             rm -f $(charset_tmp) ; \
82           fi ; \
83         fi
84
85 uninstall-local: all-local
86         if test -f $(charset_alias); then \
87           sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
88           if grep '^# Packages using this file: $$' $(charset_tmp) \
89               > /dev/null; then \
90             rm -f $(charset_alias); \
91           else \
92             $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
93           fi; \
94           rm -f $(charset_tmp); \
95         fi
96
97 charset.alias: config.charset
98         $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
99         mv t-$@ $@
100
101 SUFFIXES = .sed .sin
102 .sin.sed:
103         sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > $@-t
104         mv $@-t $@
105
106 CLEANFILES = charset.alias ref-add.sed ref-del.sed