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