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