1 ## Makefile for gnulib/lib -*-Makefile-*-
3 # Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free
4 # Software Foundation, Inc.
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2, or (at your option)
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ## GNU General Public License for more details.
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 AUTOMAKE_OPTIONS = ../src/ansi2knr
23 noinst_LIBRARIES = libfetish.a
25 INCLUDES = -I.. -I$(srcdir)
26 DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
28 ## Put relatively complex files at the beginning of the list so
29 ## that parallel compiles finish a tiny bit sooner. I don't see
30 ## a way to make regex.c appear earlier in the list, since it's
31 ## added by automake, but on systems with an up to date GNU libc,
32 ## regex.c isn't even compiled.
33 libfetish_a_SOURCES = \
37 posixver.c posixver.h \
38 strftime.c strftime.h \
39 getopt.c getopt.h getopt1.c \
41 hash-pjw.c hash-pjw.h \
44 argmatch.c argmatch.h \
45 backupfile.c backupfile.h \
51 closeout.c closeout.h \
52 cycle-check.c cycle-check.h \
59 exitfail.c exitfail.h \
60 filemode.c filemode.h \
61 file-type.c file-type.h \
66 full-read.c full-read.h \
67 full-write.c full-write.h \
75 hard-locale.c hard-locale.h \
81 linebuffer.c linebuffer.h \
83 long-options.c long-options.h \
84 makepath.c makepath.h \
85 mbswidth.c mbswidth.h \
87 memcasecmp.c memcasecmp.h \
89 modechange.c modechange.h \
92 path-concat.c path-concat.h \
96 quotearg.c quotearg.h \
97 readtokens.c readtokens.h \
100 safe-read.c safe-read.h \
101 safe-write.c safe-write.h \
103 save-cwd.c save-cwd.h \
104 savedir.c savedir.h \
114 unicodeio.c unicodeio.h \
118 version-etc.c version-etc.h \
120 xgetcwd.c xgetcwd.h \
123 xmemcoll.c xmemcoll.h \
124 xnanosleep.c xnanosleep.h \
125 xreadlink.c xreadlink.h \
127 xstrtod.c xstrtod.h \
128 xstrtol.c xstrtol.h \
134 libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@
135 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
138 BUILT_SOURCES = getdate.c
139 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
141 EXTRA_DIST = config.charset ref-add.sin ref-del.sin \
142 fnmatch_loop.c inttostr.c inttostr.h
144 # The following is needed in order to install a simple file in $(libdir)
145 # which is shared with other installed packages. We use a list of referencing
146 # packages so that "make uninstall" will remove the file if and only if it
147 # is not used by another installed package.
148 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
149 # avoid installing it.
151 all-local: charset.alias ref-add.sed ref-del.sed
153 charset_alias = $(DESTDIR)$(libdir)/charset.alias
154 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
155 install-exec-local: all-local
156 $(mkinstalldirs) $(DESTDIR)$(libdir)
157 if test -f $(charset_alias); then \
158 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
159 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
160 rm -f $(charset_tmp) ; \
162 if test @GLIBC21@ = no; then \
163 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
164 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
165 rm -f $(charset_tmp) ; \
169 uninstall-local: all-local
170 if test -f $(charset_alias); then \
171 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
172 if grep '^# Packages using this file: $$' $(charset_tmp) \
174 rm -f $(charset_alias); \
176 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
178 rm -f $(charset_tmp); \
181 charset.alias: config.charset
182 $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
187 sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
190 CLEANFILES = charset.alias ref-add.sed ref-del.sed