1 ## Makefile for gnulib/lib -*-Makefile-*-
3 # Copyright (C) 1995-2005 Free Software Foundation, Inc.
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)
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.
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
20 noinst_LIBRARIES = libcoreutils.a
22 noinst_PROGRAMS = t-fpending
23 LDADD = $(noinst_LIBRARIES)
25 AM_CPPFLAGS = -I.. -I$(srcdir)
26 DEFS += -DLIBDIR=\"$(libdir)\"
28 libcoreutils_a_SOURCES = \
34 full-read.c full-read.h \
35 full-write.c full-write.h \
37 localcharset.c localcharset.h \
38 mbswidth.c mbswidth.h \
39 readtokens0.c readtokens0.h \
41 root-dev-ino.c root-dev-ino.h \
43 unicodeio.c unicodeio.h \
44 version-etc.c version-etc.h version-etc-fsf.c \
48 xgethostname.c xgethostname.h \
49 xmemcoll.c xmemcoll.h \
50 xreadlink.c xreadlink.h \
51 xstrndup.c xstrndup.h \
56 libcoreutils_a_SOURCES += \
62 libcoreutils_a_LIBADD = $(LIBOBJS) $(ALLOCA)
63 libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD)
65 lib_OBJECTS = $(libcoreutils_a_OBJECTS)
68 BUILT_SOURCES = getdate.c
70 MAINTAINERCLEANFILES = $(BUILT_SOURCES)
74 EXTRA_DIST = getdate.c config.charset ref-add.sin ref-del.sin \
75 getndelim2.c getndelim2.h
77 # We need the following in order to install a simple file in $(libdir)
78 # which is shared with other installed packages. We use a list of referencing
79 # packages so that "make uninstall" will remove the file if and only if it
80 # is not used by another installed package.
81 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
82 # avoid installing it.
84 all-local: charset.alias ref-add.sed ref-del.sed
86 charset_alias = $(DESTDIR)$(libdir)/charset.alias
87 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
88 install-exec-local: all-local
89 test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
90 if test -f $(charset_alias); then \
91 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
92 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
93 rm -f $(charset_tmp) ; \
95 if test $(GLIBC21) = no; then \
96 sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
97 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
98 rm -f $(charset_tmp) ; \
102 uninstall-local: all-local
103 if test -f $(charset_alias); then \
104 sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
105 if grep '^# Packages using this file: $$' $(charset_tmp) \
107 rm -f $(charset_alias); \
109 $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
111 rm -f $(charset_tmp); \
114 charset.alias: config.charset
115 $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@
118 SUFFIXES += .sed .sin
120 sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@
123 CLEANFILES += charset.alias ref-add.sed ref-del.sed
125 BUILT_SOURCES += $(STDBOOL_H)
126 EXTRA_DIST += stdbool_.h
127 MOSTLYCLEANFILES += stdbool.h stdbool.ht
128 # Create stdbool.h on systems that lack a working one.
129 stdbool.h: stdbool_.h
130 sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t
133 BUILT_SOURCES += $(ALLOCA_H)
134 EXTRA_DIST += alloca_.h
136 # We need the following in order to create an <alloca.h> when the system
137 # doesn't have one that works with the given compiler.
138 all-local $(lib_OBJECTS): $(ALLOCA_H)
140 cp $(srcdir)/alloca_.h $@-t
142 MOSTLYCLEANFILES += alloca.h alloca.h-t
144 BUILT_SOURCES += $(FNMATCH_H)
145 EXTRA_DIST += fnmatch_.h fnmatch_loop.c
147 # We need the following in order to create an <fnmatch.h> when the system
148 # doesn't have one that supports the required API.
149 all-local $(lib_OBJECTS): $(FNMATCH_H)
150 fnmatch.h: fnmatch_.h
151 cp $(srcdir)/fnmatch_.h $@-t
153 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
155 BUILT_SOURCES += $(GETOPT_H)
156 EXTRA_DIST += getopt_.h getopt_int.h
161 unit-test: t-fpending
162 ./t-fpending > /dev/null
164 # We need the following in order to create an <getopt.h> when the system
165 # doesn't have one that works with the given compiler.
166 all-local $(lib_OBJECTS): $(GETOPT_H)
168 cp $(srcdir)/getopt_.h $@-t
170 MOSTLYCLEANFILES += getopt.h getopt.h-t