Bash-4.3 distribution sources and documentation
[platform/upstream/bash.git] / lib / sh / Makefile.in
1 #
2 # Makefile for the Bash library
3 #
4 #
5 # Copyright (C) 1998-2010 Free Software Foundation, Inc.
6
7 #   This program is free software: you can redistribute it and/or modify
8 #   it under the terms of the GNU General Public License as published by
9 #   the Free Software Foundation, either version 3 of the License, or
10 #   (at your option) any later version.
11
12 #   This program is distributed in the hope that it will be useful,
13 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #   GNU General Public License for more details.
16
17 #   You should have received a copy of the GNU General Public License
18 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 PACKAGE = @PACKAGE_NAME@
21 VERSION = @PACKAGE_VERSION@
22
23 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
24 PACKAGE_NAME = @PACKAGE_NAME@
25 PACKAGE_STRING = @PACKAGE_STRING@
26 PACKAGE_VERSION = @PACKAGE_VERSION@
27
28 srcdir = @srcdir@
29 VPATH = .:@srcdir@
30 topdir = @top_srcdir@
31 BUILD_DIR = @BUILD_DIR@
32
33 LIBBUILD = ${BUILD_DIR}/lib
34
35 BASHINCDIR = ${topdir}/include
36
37 INTL_LIBSRC = ${topdir}/lib/intl
38 INTL_BUILDDIR = ${LIBBUILD}/intl
39 INTL_INC = @INTL_INC@
40 LIBINTL_H = @LIBINTL_H@
41
42 datarootdir = @datarootdir@
43
44 INSTALL = @INSTALL@
45 INSTALL_PROGRAM = @INSTALL_PROGRAM@
46 INSTALL_DATA = @INSTALL_DATA@
47
48 CC = @CC@
49 RANLIB = @RANLIB@
50 AR = @AR@
51 ARFLAGS = @ARFLAGS@
52 RM = rm -f
53 CP = cp
54 MV = mv
55
56 SHELL = @MAKE_SHELL@
57
58 CFLAGS = @CFLAGS@
59 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
60 CPPFLAGS = @CPPFLAGS@
61 LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
62
63 PROFILE_FLAGS = @PROFILE_FLAGS@
64
65 DEFS = @DEFS@
66 LOCAL_DEFS = @LOCAL_DEFS@
67
68 INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)
69
70 CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
71           $(CFLAGS) $(CPPFLAGS) 
72
73 GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
74                  -Wcast-align -Wstrict-prototypes -Wconversion \
75                  -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
76
77 .c.o:
78         $(CC) -c $(CCFLAGS) $<
79
80 # The name of the library target.
81 LIBRARY_NAME = libsh.a
82
83 # The C code source files for this library.
84 CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
85            strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
86            vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
87            inet_aton.c netconn.c netopen.c strpbrk.c timeval.c makepath.c \
88            pathcanon.c pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \
89            shquote.c strtrans.c strcasestr.c snprintf.c mailstat.c \
90            fmtulong.c fmtullong.c fmtumax.c shmatch.c strnlen.c \
91            strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \
92            mktime.c strftime.c mbschr.c zcatfd.c zmapfd.c winsize.c eaccess.c \
93            wcsdup.c fpurge.c zgetline.c mbscmp.c uconvert.c ufuncs.c \
94            casemod.c dprintf.c input_avail.c mbscasecmp.c fnxform.c \
95            strchrnul.c unicode.c wcswidth.c wcsnwidth.c shmbchar.c strdup.c
96
97 # The header files for this library.
98 HSOURCES = 
99
100 # The object files contained in $(LIBRARY_NAME)
101 LIBOBJS = @LIBOBJS@
102 OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o strnlen.o \
103           itos.o zread.o zwrite.o shtty.o shmatch.o eaccess.o \
104           netconn.o netopen.o timeval.o makepath.o pathcanon.o \
105           pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
106           strtrans.o snprintf.o mailstat.o fmtulong.o \
107           fmtullong.o fmtumax.o zcatfd.o zmapfd.o winsize.o wcsdup.o \
108           fpurge.o zgetline.o mbscmp.o uconvert.o ufuncs.o casemod.o \
109           input_avail.o mbscasecmp.o fnxform.o unicode.o shmbchar.o \
110           wcsnwidth.o ${LIBOBJS}
111
112 SUPPORT = Makefile
113
114 all: $(LIBRARY_NAME)
115
116 $(LIBRARY_NAME): $(OBJECTS)
117         $(RM) $@
118         $(AR) $(ARFLAGS) $@ $(OBJECTS)
119         -test -n "$(RANLIB)" && $(RANLIB) $@
120
121 force:
122
123 # The rule for 'includes' is written funny so that the if statement
124 # always returns TRUE unless there really was an error installing the
125 # include files.
126 install:
127
128 clean:
129         $(RM) $(OBJECTS) $(LIBRARY_NAME)
130
131 realclean distclean maintainer-clean: clean
132         $(RM) Makefile
133
134 mostlyclean: clean
135
136 # Dependencies
137
138 ${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
139         -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
140
141 ${BUILD_DIR}/pathnames.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
142         -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} pathnames.h )
143
144 # rules for losing makes, like SunOS
145 casemod.o: casemod.c
146 clktck.o: clktck.c
147 clock.o: clock.c
148 eaccess.o: eaccess.c
149 dprintf.o: dprintf.c
150 fmtullong.o: fmtullong.c
151 fmtulong.o: fmtulong.c
152 fmtumax.o: fmtumax.c
153 fnxform.o: fnxform.c
154 fpurge.o: fpurge.c
155 getcwd.o: getcwd.c
156 getenv.o: getenv.c
157 inet_aton.o: inet_aton.c
158 input_avail.o: input_avail.c
159 itos.o: itos.c
160 mailstat.o: mailstat.c
161 makepath.o: makepath.c
162 mbscasecmp.o: mbscasecmp.c
163 mbscmp.o: mbscmp.c
164 memset.o: memset.c
165 mktime.o: mktime.c
166 netconn.o: netconn.c
167 netopen.o: netopen.c
168 oslib.o: oslib.c
169 pathcanon.o: pathcanon.c
170 pathphys.o: pathphys.c
171 rename.o: rename.c
172 setlinebuf.o: setlinebuf.c
173 shmbchar.o: shmbchar.c
174 shquote.o: shquote.c
175 shtty.o: shtty.c
176 snprintf.o: snprintf.c
177 spell.o: spell.c
178 strcasecmp.o: strcasecmp.c
179 strerror.o: strerror.c
180 strftime.o: strftime.c
181 strcasestr.o: strcasestr.c
182 stringlist.o: stringlist.c
183 stringvec.o: stringvec.c
184 strnlen.o: strnlen.c
185 strpbrk.o: strpbrk.c
186 strtod.o: strtod.c
187 strtoimax.o: strtoimax.c
188 strtol.o: strtol.c
189 strtoll.o: strtoll.c
190 strtoul.o: strtoul.c
191 strtoull.o: strtoull.c
192 strtoumax.o: strtoumax.c
193 strtrans.o: strtrans.c
194 times.o: times.c
195 timeval.o: timeval.c
196 tmpfile.o: tmpfile.c
197 uconvert.o: uconvert.c
198 ufuncs.o: ufuncs.c
199 vprint.o: vprint.c
200 wcsdup.o: wcsdup.c
201 wcsnwidth.o: wcsnwidth.c
202 wcswidth.o: wcswidth.c
203 mbschr.o: mbschr.c
204 zcatfd.o: zcatfd.c
205 zmapfd.o: zmapfd.c
206 zgetline.o: zgetline.c
207 zread.o: zread.c
208 zwrite.o: zwrite.c
209
210 # dependencies for c files that include other c files
211 fmtullong.o: fmtulong.c
212 fmtumax.o: fmtulong.c
213 strtoll.o: strtol.c
214 strtoul.o: strtol.c
215 strtoull.o: strtol.c
216
217 # all files in the library depend on config.h
218 casemod.o: ${BUILD_DIR}/config.h
219 clktck.o: ${BUILD_DIR}/config.h
220 clock.o: ${BUILD_DIR}/config.h
221 eaccess.o: ${BUILD_DIR}/config.h
222 dprintf.o: ${BUILD_DIR}/config.h
223 fmtullong.o: ${BUILD_DIR}/config.h
224 fmtulong.o: ${BUILD_DIR}/config.h
225 fmtumax.o: ${BUILD_DIR}/config.h
226 fnxform.o: ${BUILD_DIR}/config.h
227 fpurge.o: ${BUILD_DIR}/config.h
228 getcwd.o: ${BUILD_DIR}/config.h
229 getenv.o: ${BUILD_DIR}/config.h
230 inet_aton.o: ${BUILD_DIR}/config.h
231 input_avail.o: ${BUILD_DIR}/config.h
232 itos.o: ${BUILD_DIR}/config.h
233 mailstat.o: ${BUILD_DIR}/config.h
234 makepath.o: ${BUILD_DIR}/config.h
235 mbscasecmp.o: ${BUILD_DIR}/config.h
236 mbscmp.o: ${BUILD_DIR}/config.h
237 memset.o: ${BUILD_DIR}/config.h
238 mktime.o: ${BUILD_DIR}/config.h
239 netconn.o: ${BUILD_DIR}/config.h
240 netopen.o: ${BUILD_DIR}/config.h
241 oslib.o: ${BUILD_DIR}/config.h
242 pathcanon.o: ${BUILD_DIR}/config.h
243 pathphys.o: ${BUILD_DIR}/config.h
244 rename.o: ${BUILD_DIR}/config.h
245 setlinebuf.o: ${BUILD_DIR}/config.h
246 shmbchare.o: ${BUILD_DIR}/config.h
247 shquote.o: ${BUILD_DIR}/config.h
248 shtty.o: ${BUILD_DIR}/config.h
249 snprintf.o: ${BUILD_DIR}/config.h
250 spell.o: ${BUILD_DIR}/config.h
251 strcasecmp.o: ${BUILD_DIR}/config.h
252 strerror.o: ${BUILD_DIR}/config.h
253 strftime.o: ${BUILD_DIR}/config.h
254 strcasestr.o: ${BUILD_DIR}/config.h
255 stringlist.o: ${BUILD_DIR}/config.h
256 stringvec.o: ${BUILD_DIR}/config.h
257 strnlen.o: ${BUILD_DIR}/config.h
258 strpbrk.o: ${BUILD_DIR}/config.h
259 strtod.o: ${BUILD_DIR}/config.h
260 strtoimax.o: ${BUILD_DIR}/config.h
261 strtol.o: ${BUILD_DIR}/config.h
262 strtoll.o: ${BUILD_DIR}/config.h
263 strtoul.o: ${BUILD_DIR}/config.h
264 strtoull.o: ${BUILD_DIR}/config.h
265 strtoumax.o: ${BUILD_DIR}/config.h
266 strtrans.o: ${BUILD_DIR}/config.h
267 times.o: ${BUILD_DIR}/config.h
268 timeval.o: ${BUILD_DIR}/config.h
269 tmpfile.o: ${BUILD_DIR}/config.h
270 uconvert.o: ${BUILD_DIR}/config.h
271 ufuncs.o: ${BUILD_DIR}/config.h
272 vprint.o: ${BUILD_DIR}/config.h
273 wcsdup.o: ${BUILD_DIR}/config.h
274 wcsnwidth.o: ${BUILD_DIR}/config.h
275 wcswidth.o: ${BUILD_DIR}/config.h
276 mbschr.o: ${BUILD_DIR}/config.h
277 zcatfd.o: ${BUILD_DIR}/config.h
278 zgetline.o: ${BUILD_DIR}/config.h
279 zmapfd.o: ${BUILD_DIR}/config.h
280 zread.o: ${BUILD_DIR}/config.h
281 zwrite.o: ${BUILD_DIR}/config.h
282
283 clktck.o: ${topdir}/bashtypes.h
284
285 getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
286 getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
287 getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
288
289 getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
290 getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
291 getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
292 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
293 getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
294 getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
295 getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
296 getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
297 #getenv.o: ${BUILD_DIR}/version.h
298
299 inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
300 inet_aton.o: ${BASHINCDIR}/stdc.h
301
302 itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
303 itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
304 itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
305 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
306 itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
307 itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
308 itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
309 itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
310 #itos.o: ${BUILD_DIR}/version.h
311
312 makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
313 makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
314 makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
315 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
316 makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
317 makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
318 makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
319 makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
320 #makepath.o: ${BUILD_DIR}/version.h
321
322 netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
323 netconn.o: ${topdir}/bashtypes.h
324
325 netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
326 netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
327 netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
328 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
329 netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
330 netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
331 netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
332 netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
333 netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
334 #netopen.o: ${BUILD_DIR}/version.h
335
336 oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
337 oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
338 oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
339 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
340 oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
341 oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
342 oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
343 oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
344 oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
345 oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
346 #oslib.o: ${BUILD_DIR}/version.h
347
348 pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
349 pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
350 pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
351 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
352 pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
353 pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
354 pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
355 pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
356 pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
357 pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
358 #pathcanon.o: ${BUILD_DIR}/version.h
359
360 pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
361 pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
362 pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
363 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
364 pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
365 pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
366 pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
367 pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
368 pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
369 pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
370 #pathphys.o: ${BUILD_DIR}/version.h
371
372 rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
373 rename.o: ${BASHINCDIR}/posixstat.h
374
375 setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
376 setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
377
378 eaccess.o: ${topdir}/bashtypes.h
379 eaccess.o: ${BASHINCDIR}/posixstat.h
380 eaccess.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
381 eaccess.o: ${BASHINCDIR}/filecntl.h
382 eaccess.o: ${BASHINCDIR}/stdc.h
383 eaccess.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
384 eaccess.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
385 eaccess.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
386 eaccess.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
387 eaccess.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
388 eaccess.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
389 eaccess.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
390 #eaccess.o: ${BUILD_DIR}/version.h
391
392 shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
393 shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
394
395 shtty.o: ${BASHINCDIR}/shtty.h
396 shtty.o: ${BASHINCDIR}/stdc.h
397
398 snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
399 snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
400 snprintf.o: ${BASHINCDIR}/typemax.h
401
402 spell.o: ${topdir}/bashtypes.h
403 spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
404 spell.o: ${BASHINCDIR}/ansi_stdlib.h
405
406 strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
407 strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
408
409 strerror.o: ${topdir}/bashtypes.h
410 strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
411 strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
412 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
413 strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
414 strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
415 strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
416 strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
417 #strerror.o: ${BUILD_DIR}/version.h
418
419 strcasestr.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
420 strcasestr.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
421
422 stringlist.o: ${topdir}/bashansi.h
423 stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
424 stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
425 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
426 stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
427 stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
428 stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
429 stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
430 #stringlist.o: ${BUILD_DIR}/version.h
431
432 stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
433 stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
434 stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
435 stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
436 stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
437 stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
438 stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
439 stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
440 #stringvec.o: ${BUILD_DIR}/version.h
441
442 strnlen.o: ${BASHINCDIR}/stdc.h
443
444 strpbrk.o: ${BASHINCDIR}/stdc.h
445
446 strtod.o: ${topdir}/bashansi.h
447 strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
448
449 strtoimax.o: ${BASHINCDIR}/stdc.h
450
451 strtol.o: ${topdir}/bashansi.h
452 strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
453 strtol.o: ${BASHINCDIR}/typemax.h
454
455 strtoll.o: ${topdir}/bashansi.h
456 strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
457 strtoll.o: ${BASHINCDIR}/typemax.h
458
459 strtoul.o: ${topdir}/bashansi.h
460 strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
461 strtoul.o: ${BASHINCDIR}/typemax.h
462
463 strtoull.o: ${topdir}/bashansi.h
464 strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
465 strtoull.o: ${BASHINCDIR}/typemax.h
466
467 strtoumax.o: ${BASHINCDIR}/stdc.h
468
469 strtrans.o: ${topdir}/bashansi.h
470 strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
471 strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
472 strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
473 strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
474 strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
475 strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
476 strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
477 strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
478 #strtrans.o: ${BUILD_DIR}/version.h
479
480 times.o: ${BASHINCDIR}/systimes.h
481 times.o: ${BASHINCDIR}/posixtime.h
482
483 timeval.o: ${BASHINCDIR}/posixtime.h
484
485 tmpfile.o: ${topdir}/bashtypes.h
486 tmpfile.o: ${BASHINCDIR}/posixstat.h
487 tmpfile.o: ${BASHINCDIR}/filecntl.h
488
489 uconvert.o: ${topdir}/bashtypes.h
490
491 ufuncs.o: ${topdir}/bashtypes.h
492
493 clock.o: ${BASHINCDIR}/posixtime.h
494
495 mailstat.o: ${topdir}/bashansi.h
496 mailstat.o: ${topdir}/bashtypes.h
497 mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
498 mailstat.o: ${BASHINCDIR}/posixstat.h
499 mailstat.o: ${BASHINCDIR}/posixdir.h
500 mailstat.o: ${BASHINCDIR}/maxpath.h
501
502 fmtulong.o: ${topdir}/bashansi.h
503 fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
504 fmtulong.o: ${BASHINCDIR}/chartypes.h
505 fmtulong.o: ${BASHINCDIR}/stdc.h
506 fmtulong.o: ${BASHINCDIR}/typemax.h
507 fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
508
509 fmtullong.o: ${topdir}/bashansi.h
510 fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
511 fmtullong.o: ${BASHINCDIR}/chartypes.h
512 fmtullong.o: ${BASHINCDIR}/stdc.h
513 fmtullong.o: ${BASHINCDIR}/typemax.h
514 fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
515
516 fmtumax.o: ${topdir}/bashansi.h
517 fmtumax.o: ${BASHINCDIR}/ansi_stdlib.h
518 fmtumax.o: ${BASHINCDIR}/chartypes.h
519 fmtumax.o: ${BASHINCDIR}/stdc.h
520 fmtumax.o: ${BASHINCDIR}/typemax.h
521 fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
522
523 wcsdup.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
524 wcsdup.o: ${BASHINCDIR}/stdc.h
525 wcsdup.o: ${topdir}/xmalloc.h
526
527 wcsnwidth.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
528 wcsnwidth.o: ${BASHINCDIR}/stdc.h
529
530 wcswidth.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
531 wcswidth.o: ${BASHINCDIR}/stdc.h
532
533 mbschr.o: ${topdir}/bashansi.h
534 mbschr.o: ${BASHINCDIR}/ansi_stdlib.h
535 mbschr.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
536
537 zgetline.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
538 zgetline.o: ${BASHINCDIR}/stdc.h
539 zgetline.o: ${topdir}/xmalloc.h
540 zgetline.o: ${topdir}/bashtypes.h
541
542 mbscasecmp.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
543 mbscasecmp.o: ${BASHINCDIR}/stdc.h
544 mbscasecmp.o: ${topdir}/xmalloc.h
545
546 mbscmp.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
547 mbscmp.o: ${BASHINCDIR}/stdc.h
548 mbscmp.o: ${topdir}/xmalloc.h
549
550 casemod.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
551 casemod.o: ${BASHINCDIR}/stdc.h
552 casemod.o: ${topdir}/xmalloc.h
553 casemod.o: ${topdir}/bashtypes.h
554 casemod.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
555 casemod.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
556
557 dprintf.o: ${BASHINCDIR}/stdc.h
558
559 input_avail.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
560 input_avail.o: ${BASHINCDIR}/stdc.h
561 input_avail.o: ${topdir}/xmalloc.h ${BASHINCDIR}/posixselect.h
562
563 mktime.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
564 mktime.o: ${BASHINCDIR}/stdc.h
565
566 fnxform.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
567 fnxform.o: ${BASHINCDIR}/stdc.h
568 fnxform.o: ${topdir}/bashtypes.h
569 fnxform.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
570
571 shmbchar.o: ${BASHINCDIR}/shmbchar.h