(libcoreutils_a_SOURCES): Remove xreadlink.c and xreadlink.h.
[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., 51 Franklin Street, Fifth Floor, Boston, MA
18 ## 02110-1301, USA.
19
20 noinst_LIBRARIES = libcoreutils.a
21
22 noinst_PROGRAMS = t-fpending
23 LDADD = $(noinst_LIBRARIES)
24
25 AM_CPPFLAGS = -I.. -I$(srcdir)
26 DEFS += -DLIBDIR=\"$(libdir)\"
27
28 libcoreutils_a_SOURCES = \
29   allocsa.c allocsa.h \
30   dev-ino.h \
31   diacrit.c diacrit.h \
32   euidaccess.h \
33   exit.h \
34   full-read.c full-read.h \
35   full-write.c full-write.h \
36   gettext.h \
37   localcharset.c localcharset.h \
38   mbswidth.c mbswidth.h \
39   readtokens0.c readtokens0.h \
40   regex.h \
41   root-dev-ino.c root-dev-ino.h \
42   time_r.c time_r.h \
43   unicodeio.c unicodeio.h \
44   version-etc.c version-etc.h version-etc-fsf.c \
45   xalloc-die.c \
46   xgethostname.c xgethostname.h \
47   xmemcoll.c xmemcoll.h \
48   xstrndup.c xstrndup.h \
49   xstrtod.c xstrtod.h \
50   xstrtoimax.c \
51   xstrtoumax.c
52
53 libcoreutils_a_SOURCES += \
54   printf-args.h \
55   printf-parse.h \
56   vasprintf.h \
57   vasnprintf.h
58
59 libcoreutils_a_LIBADD = $(LIBOBJS) $(ALLOCA)
60 libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD)
61
62 lib_OBJECTS = $(libcoreutils_a_OBJECTS)
63
64
65 BUILT_SOURCES = getdate.c
66 CLEANFILES =
67 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
68 MOSTLYCLEANFILES =
69 SUFFIXES =
70
71 EXTRA_DIST = getdate.c config.charset ref-add.sin ref-del.sin \
72   getndelim2.c getndelim2.h
73
74 # We need the following in order to install a simple file in $(libdir)
75 # which is shared with other installed packages. We use a list of referencing
76 # packages so that "make uninstall" will remove the file if and only if it
77 # is not used by another installed package.
78 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
79 # avoid installing it.
80
81 all-local: charset.alias ref-add.sed ref-del.sed
82
83 charset_alias = $(DESTDIR)$(libdir)/charset.alias
84 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
85 install-exec-local: all-local
86         test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
87         if test -f $(charset_alias); then \
88           sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
89           $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
90           rm -f $(charset_tmp) ; \
91         else \
92           if test $(GLIBC21) = no; then \
93             sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
94             $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
95             rm -f $(charset_tmp) ; \
96           fi ; \
97         fi
98
99 uninstall-local: all-local
100         if test -f $(charset_alias); then \
101           sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
102           if grep '^# Packages using this file: $$' $(charset_tmp) \
103               > /dev/null; then \
104             rm -f $(charset_alias); \
105           else \
106             $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
107           fi; \
108           rm -f $(charset_tmp); \
109         fi
110
111 charset.alias: config.charset
112         $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@
113         mv t-$@ $@
114
115 SUFFIXES += .sed .sin
116 .sin.sed:
117         sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@
118         mv t-$@ $@
119
120 CLEANFILES += charset.alias ref-add.sed ref-del.sed
121
122 BUILT_SOURCES += $(STDBOOL_H)
123 EXTRA_DIST += stdbool_.h
124 MOSTLYCLEANFILES += stdbool.h stdbool.ht
125 # Create stdbool.h on systems that lack a working one.
126 stdbool.h: stdbool_.h
127         sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t
128         mv $@t $@
129
130 BUILT_SOURCES += $(ALLOCA_H)
131 EXTRA_DIST += alloca_.h
132
133 # We need the following in order to create an <alloca.h> when the system
134 # doesn't have one that works with the given compiler.
135 all-local $(lib_OBJECTS): $(ALLOCA_H)
136 alloca.h: alloca_.h
137         cp $(srcdir)/alloca_.h $@-t
138         mv $@-t $@
139 MOSTLYCLEANFILES += alloca.h alloca.h-t
140
141 BUILT_SOURCES += $(FNMATCH_H)
142 EXTRA_DIST += fnmatch_.h fnmatch_loop.c
143
144 # We need the following in order to create an <fnmatch.h> when the system
145 # doesn't have one that supports the required API.
146 all-local $(lib_OBJECTS): $(FNMATCH_H)
147 fnmatch.h: fnmatch_.h
148         cp $(srcdir)/fnmatch_.h $@-t
149         mv $@-t $@
150 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
151
152 BUILT_SOURCES += $(GETOPT_H)
153 EXTRA_DIST += getopt_.h getopt_int.h
154
155 check: unit-test
156
157 .PHONY: unit-test
158 unit-test: t-fpending
159         ./t-fpending > /dev/null
160
161 # We need the following in order to create an <getopt.h> when the system
162 # doesn't have one that works with the given compiler.
163 all-local $(lib_OBJECTS): $(GETOPT_H)
164 getopt.h: getopt_.h
165         cp $(srcdir)/getopt_.h $@-t
166         mv $@-t $@
167 MOSTLYCLEANFILES += getopt.h getopt.h-t