(libfetish_a_SOURCES): Add gtod.h.
[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 ## Put relatively complex files at the beginning of the list so
11 ## that parallel compiles finish a tiny bit sooner.  I don't see
12 ## a way to make regex.c appear earlier in the list, since it's
13 ## added by automake, but on systems with an up to date GNU libc,
14 ## regex.c isn't even compiled.
15 libfetish_a_SOURCES = \
16   getdate.h getdate.y \
17   posixtm.c posixtm.h \
18   strftime.c \
19   getopt.c getopt.h getopt1.c \
20   hash.c hash.h \
21   __fpending.h \
22   addext.c \
23   argmatch.c argmatch.h \
24   backupfile.c backupfile.h \
25   basename.c \
26   bumpalloc.h \
27   canon-host.c \
28   closeout.c closeout.h \
29   diacrit.c diacrit.h \
30   dirname.c dirname.h \
31   dup-safer.c \
32   exclude.c exclude.h \
33   filemode.c filemode.h \
34   fnmatch.h \
35   fopen-safer.c \
36   fsusage.h \
37   full-write.c \
38   getline.h \
39   getpagesize.h \
40   getstr.c getstr.h \
41   getugroups.c \
42   group-member.h \
43   gtod.h \
44   hard-locale.c hard-locale.h \
45   human.c human.h \
46   idcache.c \
47   isdir.c \
48   lchown.h \
49   linebuffer.c linebuffer.h \
50   localcharset.c \
51   long-options.c long-options.h \
52   makepath.c makepath.h \
53   mbswidth.c mbswidth.h \
54   md5.c md5.h \
55   memcasecmp.c memcasecmp.h \
56   memcoll.c memcoll.h \
57   modechange.c modechange.h \
58   mountlist.h \
59   nanosleep.h \
60   path-concat.c path-concat.h \
61   pathmax.h \
62   physmem.c physmem.h \
63   quote.c quote.h \
64   quotearg.c quotearg.h \
65   readtokens.c readtokens.h \
66   readutmp.h \
67   regex.h \
68   safe-read.c safe-read.h \
69   same.c same.h \
70   save-cwd.c save-cwd.h \
71   savedir.c savedir.h \
72   sha.c sha.h \
73   stdio-safer.h \
74   stripslash.c \
75   strverscmp.h \
76   unicodeio.c unicodeio.h \
77   unistd-safer.h \
78   userspec.c \
79   version-etc.c version-etc.h \
80   xalloc.h \
81   xgetcwd.c \
82   xgethostname.c \
83   xmalloc.c \
84   xstrdup.c \
85   xstrtod.c xstrtod.h \
86   xstrtol.c xstrtol.h \
87   xstrtoul.c \
88   xstrtoumax.c \
89   yesno.c
90
91 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
92 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
93
94
95 BUILT_SOURCES = getdate.c lstat.c stat.c unlocked-io.h
96 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
97 DISTCLEANFILES = lstat.c stat.c unlocked-io.h
98
99 EXTRA_DIST = xstat.in config.charset ref-add.sin ref-del.sin unlocked-io.hin
100 lstat.c: xstat.in
101         sed \
102           -e '/@IGNORE@/d' \
103           -e 's/@xstat@/lstat/g' \
104           -e '/_LSTAT_ONLY@/d' \
105           -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
106           $(srcdir)/xstat.in > $@-t
107         mv $@-t $@
108
109 stat.c: xstat.in
110         sed \
111           -e '/@IGNORE@/d' \
112           -e 's/@xstat@/stat/g' \
113           -e '/_STAT_ONLY@/d' \
114           -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
115           $(srcdir)/xstat.in > $@-t
116         mv $@-t $@
117
118
119 # The following is needed in order to install a simple file in $(libdir)
120 # which is shared with other installed packages. We use a list of referencing
121 # packages so that "make uninstall" will remove the file if and only if it
122 # is not used by another installed package.
123 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
124 # avoid installing it.
125
126 all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c unlocked-io.h
127
128 charset_alias = $(DESTDIR)$(libdir)/charset.alias
129 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
130 install-exec-local: all-local
131         $(mkinstalldirs) $(DESTDIR)$(libdir)
132         if test -f $(charset_alias); then \
133           sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
134           $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
135           rm -f $(charset_tmp) ; \
136         else \
137           if test @GLIBC21@ = no; then \
138             sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
139             $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
140             rm -f $(charset_tmp) ; \
141           fi ; \
142         fi
143
144 uninstall-local: all-local
145         if test -f $(charset_alias); then \
146           sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
147           if grep '^# Packages using this file: $$' $(charset_tmp) \
148               > /dev/null; then \
149             rm -f $(charset_alias); \
150           else \
151             $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
152           fi; \
153           rm -f $(charset_tmp); \
154         fi
155
156 charset.alias: config.charset
157         $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
158         mv t-$@ $@
159
160 SUFFIXES = .sed .sin
161 .sin.sed:
162         sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > $@-t
163         mv $@-t $@
164
165 CLEANFILES = charset.alias ref-add.sed ref-del.sed
166
167 ###############################################
168
169 # FIXME: CAUTION this list is a duplicate of one in ../Makefile.cfg.
170 io_functions = \
171   clearerr feof ferror fflush fgets fputc fputs \
172   fread fwrite getc getchar putc putchar
173
174 a_z=abcdefghijklmnopqrstuvwxyz
175 A_Z=ABCDEFGHIJKLMNOPQRSTUVWXYZ
176
177 unlocked-io.h: $(srcdir)/unlocked-io.hin Makefile.am
178         tmp=t$$$$;                                                      \
179         echo                                            > $$tmp;        \
180         for b in $(io_functions); do                                    \
181           f=$${b}_unlocked;                                             \
182           u=`echo $$f|tr $(a_z) $(A_Z)`;                                \
183           echo "#  if HAVE_$${u}_UNLOCKED"              >> $$tmp;       \
184           echo "#   undef $$f"                          >> $$tmp;       \
185           echo "#   define $$f(S) $${f}_unlocked (S)"   >> $$tmp;       \
186           echo '#endif'                                 >> $$tmp;       \
187         done;                                                           \
188         sed "/^@replace_this@$$/r$$tmp" $(srcdir)/unlocked-io.hin       \
189           | sed "/^@replace_this@$$/d"                                  \
190           > $@t;                                                        \
191         rm -f $$tmp;                                                    \
192         mv $@t $@