1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
## Makefile for the gettext-tools/lib subdirectory of GNU gettext
## Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
## Process this file with automake to produce Makefile.in.
AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies
EXTRA_DIST =
MOSTLYCLEANFILES =
CLEANFILES =
DISTCLEANFILES =
SUFFIXES =
RM = rm -f
lib_LTLIBRARIES = libgettextlib.la
# Sources that are compiled on all platforms.
libgettextlib_la_SOURCES = \
argmatch.h argmatch.c \
backupfile.h backupfile.c addext.c \
basename.h basename.c \
binary-io.h \
c-ctype.h c-ctype.c \
classpath.h classpath.c \
closeout.h closeout.c \
copy-file.h copy-file.c \
error.h error.c \
error-progname.h error-progname.c \
execute.h execute.c w32spawn.h \
exit.h \
findprog.h findprog.c \
fstrcmp.h fstrcmp.c \
full-write.h full-write.c \
fwriteerror.h fwriteerror.c \
gcd.h gcd.c \
getopt.h getopt.c getopt1.c \
hash.h hash.c \
javacomp.h javacomp.c \
javaexec.h javaexec.c \
linebreak.h linebreak.c lbrkprop.h utf8-ucs4.h utf16-ucs4.h \
mbswidth.h mbswidth.c \
minmax.h \
obstack.h obstack.c \
pathmax.h \
pathname.h concatpath.c \
pipe.h pipe-bidi.c pipe-in.c pipe-out.c w32spawn.h \
progname.h progname.c progreloc.c \
safe-read.h safe-read.c \
safe-write.h safe-write.c \
sh-quote.h sh-quote.c \
stpncpy.h stpncpy.c \
strtoul.c \
tmpdir.h tmpdir.c \
ucs4-utf8.h ucs4-utf16.h \
unlocked-io.h \
wait-process.h wait-process.c \
xerror.h xerror.c \
xmalloc.h xmalloc.c xstrdup.c \
xreadlink.h xreadlink.c \
xsetenv.h xsetenv.c
# Sources that are compiled only on platforms that lack the functions.
LIBADD_SOURCE = \
alloca.c \
canonicalize.h canonicalize.c \
fnmatch.c \
getline.h getline.c \
getndelim2.h getndelim2.c \
memmove.c \
memset.c \
mkdtemp.h mkdtemp.c \
readlink.c \
relocatable.h relocatable.c \
setenv.h setenv.c unsetenv.c \
stpcpy.h stpcpy.c \
strcase.h strcasecmp.c strncasecmp.c \
strcspn.c \
strerror.c \
strpbrk.h strpbrk.c \
strstr.h strstr.c \
strtol.c \
vasprintf.h vasprintf.c
# Unused sources.
UNUSED_SOURCE = \
xgetcwd.h xgetcwd.c
# How to build libgettextlib.la.
libgettextlib_la_LIBADD = @LTALLOCA@ @LTLIBOBJS@
# Need @LTLIBINTL@ because many source files use gettext().
# Need @LTLIBICONV@ because linebreak.c uses iconv().
libgettextlib_la_LDFLAGS = \
-release @VERSION@ \
@LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
# No need to install libgettextlib.a.
install-exec-am: install-exec-clean
install-exec-clean:
$(RM) $(DESTDIR)$(libdir)/libgettextlib.a
# Extra files to be installed.
gettextsrcdir = $(datadir)/gettext
gettextsrc_DATA = gettext.h
# List of files to be distributed.
noinst_HEADERS = gettext.h
EXTRA_DIST += \
$(LIBADD_SOURCE) $(UNUSED_SOURCE) relocwrapper.c \
gen-lbrkprop.c 3level.h Combining.txt \
ChangeLog.0
INCLUDES = -I. -I$(srcdir) -I.. -I../intl -I$(top_srcdir)/intl
DEFS = -DEXEEXT=\"$(EXEEXT)\" -DDEPENDS_ON_LIBINTL=1 -DDEPENDS_ON_LIBICONV=1 @DEFS@
DISTCLEANFILES += fnmatch.h
# >>> gnulib module stdbool.
EXTRA_DIST += stdbool_.h
# The following is needed in order to create an <stdbool.h> when the system
# doesn't have one that works.
all-local $(libgettextlib_la_OBJECTS): @STDBOOL_H@
stdbool.h: stdbool_.h
sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' < $(srcdir)/stdbool_.h > stdbool.h
MOSTLYCLEANFILES += stdbool.h
# <<< gnulib module stdbool.
# >>> gnulib module alloca.
EXTRA_DIST += alloca_.h
# The following is needed in order to create an <alloca.h> when the system
# doesn't have one that works with the given compiler.
all-local $(libgettextlib_la_OBJECTS): @ALLOCA_H@
alloca.h: alloca_.h
cp $(srcdir)/alloca_.h alloca.h
MOSTLYCLEANFILES += alloca.h
# <<< gnulib module alloca.
# >>> gnulib module fnmatch.
EXTRA_DIST += fnmatch_.h
# The following is needed in order to create an <fnmatch.h> when the system
# doesn't have one that works.
all-local $(libgettextlib_la_OBJECTS): @FNMATCH_H@
fnmatch.h: fnmatch_.h
cp $(srcdir)/fnmatch_.h fnmatch.h
MOSTLYCLEANFILES += fnmatch.h
# <<< gnulib module fnmatch.
# >>> gnulib module localcharset.
libgettextlib_la_SOURCES += localcharset.h localcharset.c
EXTRA_DIST += config.charset ref-add.sin ref-del.sin
DEFS += -DLIBDIR=\"$(libdir)\"
# The following is needed in order to install a simple file in $(libdir)
# which is shared with other installed packages. We use a list of referencing
# packages so that "make uninstall" will remove the file if and only if it
# is not used by another installed package.
# On systems with glibc-2.1 or newer, the file is redundant, therefore we
# avoid installing it.
all-local: charset.alias ref-add.sed ref-del.sed
charset_alias = $(DESTDIR)$(libdir)/charset.alias
charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
install-exec-local: all-local
test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
if test -f $(charset_alias); then \
sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
rm -f $(charset_tmp) ; \
else \
if test @GLIBC21@ = no; then \
sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
rm -f $(charset_tmp) ; \
fi ; \
fi
uninstall-local: all-local
if test -f $(charset_alias); then \
sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
if grep '^# Packages using this file: $$' $(charset_tmp) \
> /dev/null; then \
rm -f $(charset_alias); \
else \
$(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
fi; \
rm -f $(charset_tmp); \
fi
charset.alias: config.charset
$(SHELL) $(srcdir)/config.charset '@host@' > t-$@
mv t-$@ $@
SUFFIXES += .sed .sin
.sin.sed:
sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
mv t-$@ $@
CLEANFILES += charset.alias ref-add.sed ref-del.sed
# <<< gnulib module localcharset.
# VMS support.
EXTRA_DIST += Makefile.vms
# Woe32 support.
EXTRA_DIST += Makefile.msvc
|