(libfetish_a_SOURCES): Remove xnanosleep.c,
[platform/upstream/coreutils.git] / lib / Makefile.am
1 ## Makefile for gnulib/lib                              -*-Makefile-*-
2
3 # Copyright (C) 1995-2005 Free Software Foundation, Inc.
4
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 ## 02111-1307, USA.
19
20 noinst_LIBRARIES = libfetish.a
21
22 noinst_PROGRAMS = t-fpending
23 LDADD = $(noinst_LIBRARIES)
24
25 AM_CPPFLAGS = -I.. -I$(srcdir)
26 DEFS += -DLIBDIR=\"$(libdir)\"
27
28 libfetish_a_SOURCES = \
29   allocsa.c allocsa.h \
30   argmatch.c argmatch.h \
31   cycle-check.c cycle-check.h \
32   dev-ino.h \
33   diacrit.c diacrit.h \
34   dup-safer.c \
35   euidaccess.h \
36   exit.h \
37   fcntl-safer.h \
38   fopen-safer.c \
39   full-read.c full-read.h \
40   full-write.c full-write.h \
41   gettext.h \
42   localcharset.c localcharset.h \
43   mbswidth.c mbswidth.h \
44   open-safer.c \
45   readtokens0.c readtokens0.h \
46   regex.h \
47   root-dev-ino.c root-dev-ino.h \
48   stat-macros.h \
49   stdio-safer.h \
50   time_r.c time_r.h \
51   unicodeio.c unicodeio.h \
52   unistd-safer.h \
53   version-etc.c version-etc.h version-etc-fsf.c \
54   xalloc-die.c \
55   xfts.c xfts.h \
56   xgetcwd.c xgetcwd.h \
57   xgethostname.c xgethostname.h \
58   xmemcoll.c xmemcoll.h \
59   xreadlink.c xreadlink.h \
60   xstrndup.c xstrndup.h \
61   xstrtod.c xstrtod.h \
62   xstrtoimax.c \
63   xstrtol.c xstrtol.h \
64   xstrtoul.c \
65   xstrtoumax.c
66
67 libfetish_a_SOURCES += \
68   printf-args.h \
69   printf-parse.h \
70   vasprintf.h \
71   vasnprintf.h
72
73 libfetish_a_LIBADD = $(LIBOBJS) $(ALLOCA)
74 libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD)
75
76 lib_OBJECTS = $(libfetish_a_OBJECTS)
77
78
79 BUILT_SOURCES = getdate.c
80 CLEANFILES =
81 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
82 MOSTLYCLEANFILES =
83 SUFFIXES =
84
85 EXTRA_DIST = getdate.c config.charset ref-add.sin ref-del.sin \
86   getndelim2.c getndelim2.h
87
88 # We need the following in order to install a simple file in $(libdir)
89 # which is shared with other installed packages. We use a list of referencing
90 # packages so that "make uninstall" will remove the file if and only if it
91 # is not used by another installed package.
92 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
93 # avoid installing it.
94
95 all-local: charset.alias ref-add.sed ref-del.sed
96
97 charset_alias = $(DESTDIR)$(libdir)/charset.alias
98 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
99 install-exec-local: all-local
100         test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
101         if test -f $(charset_alias); then \
102           sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
103           $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
104           rm -f $(charset_tmp) ; \
105         else \
106           if test $(GLIBC21) = no; then \
107             sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
108             $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
109             rm -f $(charset_tmp) ; \
110           fi ; \
111         fi
112
113 uninstall-local: all-local
114         if test -f $(charset_alias); then \
115           sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
116           if grep '^# Packages using this file: $$' $(charset_tmp) \
117               > /dev/null; then \
118             rm -f $(charset_alias); \
119           else \
120             $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
121           fi; \
122           rm -f $(charset_tmp); \
123         fi
124
125 charset.alias: config.charset
126         $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@
127         mv t-$@ $@
128
129 SUFFIXES += .sed .sin
130 .sin.sed:
131         sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@
132         mv t-$@ $@
133
134 CLEANFILES += charset.alias ref-add.sed ref-del.sed
135
136 BUILT_SOURCES += $(STDBOOL_H)
137 EXTRA_DIST += stdbool_.h
138 MOSTLYCLEANFILES += stdbool.h stdbool.ht
139 # Create stdbool.h on systems that lack a working one.
140 stdbool.h: stdbool_.h
141         sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t
142         mv $@t $@
143
144 BUILT_SOURCES += $(ALLOCA_H)
145 EXTRA_DIST += alloca_.h
146
147 # We need the following in order to create an <alloca.h> when the system
148 # doesn't have one that works with the given compiler.
149 all-local $(lib_OBJECTS): $(ALLOCA_H)
150 alloca.h: alloca_.h
151         cp $(srcdir)/alloca_.h $@-t
152         mv $@-t $@
153 MOSTLYCLEANFILES += alloca.h alloca.h-t
154
155 BUILT_SOURCES += $(FNMATCH_H)
156 EXTRA_DIST += fnmatch_.h fnmatch_loop.c
157
158 # We need the following in order to create an <fnmatch.h> when the system
159 # doesn't have one that supports the required API.
160 all-local $(lib_OBJECTS): $(FNMATCH_H)
161 fnmatch.h: fnmatch_.h
162         cp $(srcdir)/fnmatch_.h $@-t
163         mv $@-t $@
164 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
165
166 BUILT_SOURCES += $(GETOPT_H)
167 EXTRA_DIST += getopt_.h getopt_int.h
168
169 check: unit-test
170
171 .PHONY: unit-test
172 unit-test: t-fpending
173         ./t-fpending > /dev/null
174
175 # We need the following in order to create an <getopt.h> when the system
176 # doesn't have one that works with the given compiler.
177 all-local $(lib_OBJECTS): $(GETOPT_H)
178 getopt.h: getopt_.h
179         cp $(srcdir)/getopt_.h $@-t
180         mv $@-t $@
181 MOSTLYCLEANFILES += getopt.h getopt.h-t