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