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 = \
19 getopt.c getopt.h getopt1.c \
23 argmatch.c argmatch.h \
24 backupfile.c backupfile.h \
28 closeout.c closeout.h \
33 filemode.c filemode.h \
43 hard-locale.c hard-locale.h \
48 linebuffer.c linebuffer.h \
50 long-options.c long-options.h \
51 makepath.c makepath.h \
52 mbswidth.c mbswidth.h \
54 memcasecmp.c memcasecmp.h \
56 modechange.c modechange.h \
59 path-concat.c path-concat.h \
63 quotearg.c quotearg.h \
64 readtokens.c readtokens.h \
67 safe-read.c safe-read.h \
69 save-cwd.c save-cwd.h \
75 unicodeio.c unicodeio.h \
78 version-etc.c version-etc.h \
90 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
91 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
94 BUILT_SOURCES = getdate.c lstat.c stat.c
95 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
96 DISTCLEANFILES = lstat.c stat.c
98 EXTRA_DIST = xstat.in config.charset ref-add.sin ref-del.sin
102 -e 's/@xstat@/lstat/g' \
103 -e '/_LSTAT_ONLY@/d' \
104 -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
105 $(srcdir)/xstat.in > $@-t
111 -e 's/@xstat@/stat/g' \
112 -e '/_STAT_ONLY@/d' \
113 -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
114 $(srcdir)/xstat.in > $@-t
118 # The following is needed in order to install a simple file in $(libdir)
119 # which is shared with other installed packages. We use a list of referencing
120 # packages so that "make uninstall" will remove the file if and only if it
121 # is not used by another installed package.
122 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
123 # avoid installing it.
125 all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c
127 charset_alias = $(DESTDIR)$(libdir)/charset.alias
128 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
129 install-exec-local: all-local
130 $(mkinstalldirs) $(DESTDIR)$(libdir)
131 if test -f $(charset_alias); then \
132 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
133 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
134 rm -f $(charset_tmp) ; \
136 if test @GLIBC21@ = no; then \
137 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
138 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
139 rm -f $(charset_tmp) ; \
143 uninstall-local: all-local
144 if test -f $(charset_alias); then \
145 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
146 if grep '^# Packages using this file: $$' $(charset_tmp) \
148 rm -f $(charset_alias); \
150 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
152 rm -f $(charset_tmp); \
155 charset.alias: config.charset
156 $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
161 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > $@-t
164 CLEANFILES = charset.alias ref-add.sed ref-del.sed