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) -I../intl
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 = \
18 posixver.c posixver.h \
20 getopt.c getopt.h getopt1.c \
22 hash-pjw.c hash-pjw.h \
25 argmatch.c argmatch.h \
26 backupfile.c backupfile.h \
30 closeout.c closeout.h \
36 filemode.c filemode.h \
40 full-write.c full-write.h \
46 hard-locale.c hard-locale.h \
51 linebuffer.c linebuffer.h \
53 long-options.c long-options.h \
54 makepath.c makepath.h \
55 mbswidth.c mbswidth.h \
57 memcasecmp.c memcasecmp.h \
59 modechange.c modechange.h \
62 path-concat.c path-concat.h \
66 quotearg.c quotearg.h \
67 readtokens.c readtokens.h \
70 safe-read.c safe-read.h \
72 save-cwd.c save-cwd.h \
78 unicodeio.c unicodeio.h \
81 version-etc.c version-etc.h \
86 xmemcoll.c xmemcoll.h \
87 xreadlink.c xreadlink.h \
96 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
97 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
100 BUILT_SOURCES = getdate.c lstat.c stat.c unlocked-io.h
101 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
102 DISTCLEANFILES = lstat.c stat.c unlocked-io.h
104 EXTRA_DIST = xstat.in config.charset ref-add.sin ref-del.sin gen-uio
108 -e 's/@xstat@/lstat/g' \
109 -e '/_LSTAT_ONLY@/d' \
110 -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
111 $(srcdir)/xstat.in > $@-t
117 -e 's/@xstat@/stat/g' \
118 -e '/_STAT_ONLY@/d' \
119 -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
120 $(srcdir)/xstat.in > $@-t
123 # The following is needed in order to install a simple file in $(libdir)
124 # which is shared with other installed packages. We use a list of referencing
125 # packages so that "make uninstall" will remove the file if and only if it
126 # is not used by another installed package.
127 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
128 # avoid installing it.
130 all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c unlocked-io.h
132 charset_alias = $(DESTDIR)$(libdir)/charset.alias
133 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
134 install-exec-local: all-local
135 $(mkinstalldirs) $(DESTDIR)$(libdir)
136 if test -f $(charset_alias); then \
137 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
138 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
139 rm -f $(charset_tmp) ; \
141 if test @GLIBC21@ = no; then \
142 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
143 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
144 rm -f $(charset_tmp) ; \
148 uninstall-local: all-local
149 if test -f $(charset_alias); then \
150 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
151 if grep '^# Packages using this file: $$' $(charset_tmp) \
153 rm -f $(charset_alias); \
155 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
157 rm -f $(charset_tmp); \
160 charset.alias: config.charset
161 $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
166 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > $@-t
169 CLEANFILES = charset.alias ref-add.sed ref-del.sed
171 ###############################################
173 # FIXME: remove this dependency once automake handles it.
174 # As of cvs automake of about 2002-01-13,
175 # this dependency is necessary to avoid a build failure
176 # when running `make check' before running `make all'.
177 # Otherwise, unlocked-io.h is not built before it's needed.
178 getdate$U.o: unlocked-io.h
180 # FIXME: CAUTION this list is a duplicate of one in ../Makefile.cfg.
182 clearerr feof ferror fflush fgets fputc fputs \
183 fread fwrite getc getchar putc putchar
185 unlocked-io.h: $(srcdir)/gen-uio Makefile.am
186 srcdir=$(srcdir) $(SHELL) $(srcdir)/gen-uio $(io_functions) > $@t