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