1 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
3 AUTOMAKE_OPTIONS = ../src/ansi2knr
5 noinst_LIBRARIES = libfetish.a
7 INCLUDES = -I.. -I$(srcdir)
8 DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
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 = \
19 posixver.c posixver.h \
21 getopt.c getopt.h getopt1.c \
23 hash-pjw.c hash-pjw.h \
26 argmatch.c argmatch.h \
27 backupfile.c backupfile.h \
32 closeout.c closeout.h \
38 exitfail.c exitfail.h \
39 filemode.c filemode.h \
40 file-type.c file-type.h \
44 full-write.c full-write.h \
52 hard-locale.c hard-locale.h \
57 linebuffer.c linebuffer.h \
59 long-options.c long-options.h \
60 makepath.c makepath.h \
61 mbswidth.c mbswidth.h \
63 memcasecmp.c memcasecmp.h \
65 modechange.c modechange.h \
67 path-concat.c path-concat.h \
71 quotearg.c quotearg.h \
72 readtokens.c readtokens.h \
75 safe-read.c safe-read.h \
77 save-cwd.c save-cwd.h \
86 unicodeio.c unicodeio.h \
89 version-etc.c version-etc.h \
94 xmemcoll.c xmemcoll.h \
95 xreadlink.c xreadlink.h \
104 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
105 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
108 BUILT_SOURCES = getdate.c lstat.c stat.c unlocked-io.h
109 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
110 DISTCLEANFILES = lstat.c stat.c unlocked-io.h
112 EXTRA_DIST = xstat.in config.charset ref-add.sin ref-del.sin gen-uio \
118 -e 's/@xstat@/lstat/g' \
119 -e '/_LSTAT_ONLY@/d' \
120 -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
121 $(srcdir)/xstat.in > t-$@
127 -e 's/@xstat@/stat/g' \
128 -e '/_STAT_ONLY@/d' \
129 -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
130 $(srcdir)/xstat.in > t-$@
133 # The following is needed in order to install a simple file in $(libdir)
134 # which is shared with other installed packages. We use a list of referencing
135 # packages so that "make uninstall" will remove the file if and only if it
136 # is not used by another installed package.
137 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
138 # avoid installing it.
140 all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c unlocked-io.h
142 charset_alias = $(DESTDIR)$(libdir)/charset.alias
143 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
144 install-exec-local: all-local
145 $(mkinstalldirs) $(DESTDIR)$(libdir)
146 if test -f $(charset_alias); then \
147 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
148 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
149 rm -f $(charset_tmp) ; \
151 if test @GLIBC21@ = no; then \
152 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
153 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
154 rm -f $(charset_tmp) ; \
158 uninstall-local: all-local
159 if test -f $(charset_alias); then \
160 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
161 if grep '^# Packages using this file: $$' $(charset_tmp) \
163 rm -f $(charset_alias); \
165 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
167 rm -f $(charset_tmp); \
170 charset.alias: config.charset
171 $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
176 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
179 CLEANFILES = charset.alias ref-add.sed ref-del.sed
181 ###############################################
183 # FIXME: remove this dependency once automake handles it.
184 # As of cvs automake of about 2002-01-13,
185 # this dependency is necessary to avoid a build failure
186 # when running `make check' before running `make all'.
187 # Otherwise, unlocked-io.h is not built before it's needed.
188 getdate$U.o: unlocked-io.h
190 # FIXME: CAUTION this list is a duplicate of one in ../Makefile.cfg.
192 clearerr feof ferror fflush fgets fputc fputs \
193 fread fwrite getc getchar putc putchar
195 unlocked-io.h: $(srcdir)/gen-uio Makefile.am
196 srcdir=$(srcdir) $(SHELL) $(srcdir)/gen-uio $(io_functions) > $@t