d97cd99b61fbc36e310d2ddf7ed7779654958ec8
[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 shmbchar.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 ${LIBOBJS}
110
111 SUPPORT = Makefile
112
113 all: $(LIBRARY_NAME)
114
115 $(LIBRARY_NAME): $(OBJECTS)
116         $(RM) $@
117         $(AR) $(ARFLAGS) $@ $(OBJECTS)
118         -test -n "$(RANLIB)" && $(RANLIB) $@
119
120 force:
121
122 # The rule for 'includes' is written funny so that the if statement
123 # always returns TRUE unless there really was an error installing the
124 # include files.
125 install:
126
127 clean:
128         $(RM) $(OBJECTS) $(LIBRARY_NAME)
129
130 realclean distclean maintainer-clean: clean
131         $(RM) Makefile
132
133 mostlyclean: clean
134
135 # Dependencies
136
137 ${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
138         -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
139
140 ${BUILD_DIR}/pathnames.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
141         -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} pathnames.h )
142
143 # rules for losing makes, like SunOS
144 casemod.o: casemod.c
145 clktck.o: clktck.c
146 clock.o: clock.c
147 eaccess.o: eaccess.c
148 dprintf.o: dprintf.c
149 fmtullong.o: fmtullong.c
150 fmtulong.o: fmtulong.c
151 fmtumax.o: fmtumax.c
152 fnxform.o: fnxform.c
153 fpurge.o: fpurge.c
154 getcwd.o: getcwd.c
155 getenv.o: getenv.c
156 inet_aton.o: inet_aton.c
157 input_avail.o: input_avail.c
158 itos.o: itos.c
159 mailstat.o: mailstat.c
160 makepath.o: makepath.c
161 mbscasecmp.o: mbscasecmp.c
162 mbscmp.o: mbscmp.c
163 memset.o: memset.c
164 mktime.o: mktime.c
165 netconn.o: netconn.c
166 netopen.o: netopen.c
167 oslib.o: oslib.c
168 pathcanon.o: pathcanon.c
169 pathphys.o: pathphys.c
170 rename.o: rename.c
171 setlinebuf.o: setlinebuf.c
172 shmbchar.o: shmbchar.c
173 shquote.o: shquote.c
174 shtty.o: shtty.c
175 snprintf.o: snprintf.c
176 spell.o: spell.c
177 strcasecmp.o: strcasecmp.c
178 strerror.o: strerror.c
179 strftime.o: strftime.c
180 strcasestr.o: strcasestr.c
181 stringlist.o: stringlist.c
182 stringvec.o: stringvec.c
183 strnlen.o: strnlen.c
184 strpbrk.o: strpbrk.c
185 strtod.o: strtod.c
186 strtoimax.o: strtoimax.c
187 strtol.o: strtol.c
188 strtoll.o: strtoll.c
189 strtoul.o: strtoul.c
190 strtoull.o: strtoull.c
191 strtoumax.o: strtoumax.c
192 strtrans.o: strtrans.c
193 times.o: times.c
194 timeval.o: timeval.c
195 tmpfile.o: tmpfile.c
196 uconvert.o: uconvert.c
197 ufuncs.o: ufuncs.c
198 vprint.o: vprint.c
199 wcsdup.o: wcsdup.c
200 wcswidth.o: wcswidth.c
201 mbschr.o: mbschr.c
202 zcatfd.o: zcatfd.c
203 zmapfd.o: zmapfd.c
204 zgetline.o: zgetline.c
205 zread.o: zread.c
206 zwrite.o: zwrite.c
207
208 # dependencies for c files that include other c files
209 fmtullong.o: fmtulong.c
210 fmtumax.o: fmtulong.c
211 strtoll.o: strtol.c
212 strtoul.o: strtol.c
213 strtoull.o: strtol.c
214
215 # all files in the library depend on config.h
216 casemod.o: ${BUILD_DIR}/config.h
217 clktck.o: ${BUILD_DIR}/config.h
218 clock.o: ${BUILD_DIR}/config.h
219 eaccess.o: ${BUILD_DIR}/config.h
220 dprintf.o: ${BUILD_DIR}/config.h
221 fmtullong.o: ${BUILD_DIR}/config.h
222 fmtulong.o: ${BUILD_DIR}/config.h
223 fmtumax.o: ${BUILD_DIR}/config.h
224 fnxform.o: ${BUILD_DIR}/config.h
225 fpurge.o: ${BUILD_DIR}/config.h
226 getcwd.o: ${BUILD_DIR}/config.h
227 getenv.o: ${BUILD_DIR}/config.h
228 inet_aton.o: ${BUILD_DIR}/config.h
229 input_avail.o: ${BUILD_DIR}/config.h
230 itos.o: ${BUILD_DIR}/config.h
231 mailstat.o: ${BUILD_DIR}/config.h
232 makepath.o: ${BUILD_DIR}/config.h
233 mbscasecmp.o: ${BUILD_DIR}/config.h
234 mbscmp.o: ${BUILD_DIR}/config.h
235 memset.o: ${BUILD_DIR}/config.h
236 mktime.o: ${BUILD_DIR}/config.h
237 netconn.o: ${BUILD_DIR}/config.h
238 netopen.o: ${BUILD_DIR}/config.h
239 oslib.o: ${BUILD_DIR}/config.h
240 pathcanon.o: ${BUILD_DIR}/config.h
241 pathphys.o: ${BUILD_DIR}/config.h
242 rename.o: ${BUILD_DIR}/config.h
243 setlinebuf.o: ${BUILD_DIR}/config.h
244 shmbchare.o: ${BUILD_DIR}/config.h
245 shquote.o: ${BUILD_DIR}/config.h
246 shtty.o: ${BUILD_DIR}/config.h
247 snprintf.o: ${BUILD_DIR}/config.h
248 spell.o: ${BUILD_DIR}/config.h
249 strcasecmp.o: ${BUILD_DIR}/config.h
250 strerror.o: ${BUILD_DIR}/config.h
251 strftime.o: ${BUILD_DIR}/config.h
252 strcasestr.o: ${BUILD_DIR}/config.h
253 stringlist.o: ${BUILD_DIR}/config.h
254 stringvec.o: ${BUILD_DIR}/config.h
255 strnlen.o: ${BUILD_DIR}/config.h
256 strpbrk.o: ${BUILD_DIR}/config.h
257 strtod.o: ${BUILD_DIR}/config.h
258 strtoimax.o: ${BUILD_DIR}/config.h
259 strtol.o: ${BUILD_DIR}/config.h
260 strtoll.o: ${BUILD_DIR}/config.h
261 strtoul.o: ${BUILD_DIR}/config.h
262 strtoull.o: ${BUILD_DIR}/config.h
263 strtoumax.o: ${BUILD_DIR}/config.h
264 strtrans.o: ${BUILD_DIR}/config.h
265 times.o: ${BUILD_DIR}/config.h
266 timeval.o: ${BUILD_DIR}/config.h
267 tmpfile.o: ${BUILD_DIR}/config.h
268 uconvert.o: ${BUILD_DIR}/config.h
269 ufuncs.o: ${BUILD_DIR}/config.h
270 vprint.o: ${BUILD_DIR}/config.h
271 wcsdup.o: ${BUILD_DIR}/config.h
272 wcswidth.o: ${BUILD_DIR}/config.h
273 mbschr.o: ${BUILD_DIR}/config.h
274 zcatfd.o: ${BUILD_DIR}/config.h
275 zgetline.o: ${BUILD_DIR}/config.h
276 zmapfd.o: ${BUILD_DIR}/config.h
277 zread.o: ${BUILD_DIR}/config.h
278 zwrite.o: ${BUILD_DIR}/config.h
279
280 clktck.o: ${topdir}/bashtypes.h
281
282 getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
283 getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
284 getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
285
286 getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
287 getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
288 getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
289 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
290 getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
291 getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
292 getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
293 getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
294 getenv.o: ${BUILD_DIR}/version.h
295
296 inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
297 inet_aton.o: ${BASHINCDIR}/stdc.h
298
299 itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
300 itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
301 itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
302 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
303 itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
304 itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
305 itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
306 itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
307
308 makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
309 makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
310 makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
311 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
312 makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
313 makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
314 makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
315 makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
316
317 netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
318 netconn.o: ${topdir}/bashtypes.h
319
320 netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
321 netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
322 netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
323 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
324 netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
325 netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
326 netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
327 netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
328 netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
329
330 oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
331 oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
332 oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
333 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
334 oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
335 oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
336 oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
337 oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
338 oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
339 oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
340
341 pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
342 pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
343 pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
344 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
345 pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
346 pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
347 pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
348 pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
349 pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
350 pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
351
352 pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
353 pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
354 pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
355 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
356 pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
357 pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
358 pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
359 pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
360 pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
361 pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
362
363 rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
364 rename.o: ${BASHINCDIR}/posixstat.h
365
366 setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
367 setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
368
369 eaccess.o: ${topdir}/bashtypes.h
370 eaccess.o: ${BASHINCDIR}/posixstat.h
371 eaccess.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
372 eaccess.o: ${BASHINCDIR}/filecntl.h
373 eaccess.o: ${BASHINCDIR}/stdc.h
374 eaccess.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
375 eaccess.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
376 eaccess.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
377 eaccess.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
378 eaccess.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
379 eaccess.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
380 eaccess.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
381
382 shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
383 shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
384
385 shtty.o: ${BASHINCDIR}/shtty.h
386 shtty.o: ${BASHINCDIR}/stdc.h
387
388 snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
389 snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
390 snprintf.o: ${BASHINCDIR}/typemax.h
391
392 spell.o: ${topdir}/bashtypes.h
393 spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
394 spell.o: ${BASHINCDIR}/ansi_stdlib.h
395
396 strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
397 strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
398
399 strerror.o: ${topdir}/bashtypes.h
400 strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
401 strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
402 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
403 strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
404 strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
405 strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
406 strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
407
408 strcasestr.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
409 strcasestr.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
410
411 stringlist.o: ${topdir}/bashansi.h
412 stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
413 stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
414 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
415 stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
416 stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
417 stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
418 stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
419
420 stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
421 stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
422 stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
423 stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
424 stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
425 stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
426 stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
427 stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
428
429 strnlen.o: ${BASHINCDIR}/stdc.h
430
431 strpbrk.o: ${BASHINCDIR}/stdc.h
432
433 strtod.o: ${topdir}/bashansi.h
434 strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
435
436 strtoimax.o: ${BASHINCDIR}/stdc.h
437
438 strtol.o: ${topdir}/bashansi.h
439 strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
440 strtol.o: ${BASHINCDIR}/typemax.h
441
442 strtoll.o: ${topdir}/bashansi.h
443 strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
444 strtoll.o: ${BASHINCDIR}/typemax.h
445
446 strtoul.o: ${topdir}/bashansi.h
447 strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
448 strtoul.o: ${BASHINCDIR}/typemax.h
449
450 strtoull.o: ${topdir}/bashansi.h
451 strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
452 strtoull.o: ${BASHINCDIR}/typemax.h
453
454 strtoumax.o: ${BASHINCDIR}/stdc.h
455
456 strtrans.o: ${topdir}/bashansi.h
457 strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
458 strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
459 strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
460 strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
461 strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
462 strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
463 strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
464 strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
465
466 times.o: ${BASHINCDIR}/systimes.h
467 times.o: ${BASHINCDIR}/posixtime.h
468
469 timeval.o: ${BASHINCDIR}/posixtime.h
470
471 tmpfile.o: ${topdir}/bashtypes.h
472 tmpfile.o: ${BASHINCDIR}/posixstat.h
473 tmpfile.o: ${BASHINCDIR}/filecntl.h
474
475 uconvert.o: ${topdir}/bashtypes.h
476
477 ufuncs.o: ${topdir}/bashtypes.h
478
479 clock.o: ${BASHINCDIR}/posixtime.h
480
481 mailstat.o: ${topdir}/bashansi.h
482 mailstat.o: ${topdir}/bashtypes.h
483 mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
484 mailstat.o: ${BASHINCDIR}/posixstat.h
485 mailstat.o: ${BASHINCDIR}/posixdir.h
486 mailstat.o: ${BASHINCDIR}/maxpath.h
487
488 fmtulong.o: ${topdir}/bashansi.h
489 fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
490 fmtulong.o: ${BASHINCDIR}/chartypes.h
491 fmtulong.o: ${BASHINCDIR}/stdc.h
492 fmtulong.o: ${BASHINCDIR}/typemax.h
493 fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
494
495 fmtullong.o: ${topdir}/bashansi.h
496 fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
497 fmtullong.o: ${BASHINCDIR}/chartypes.h
498 fmtullong.o: ${BASHINCDIR}/stdc.h
499 fmtullong.o: ${BASHINCDIR}/typemax.h
500 fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
501
502 fmtumax.o: ${topdir}/bashansi.h
503 fmtumax.o: ${BASHINCDIR}/ansi_stdlib.h
504 fmtumax.o: ${BASHINCDIR}/chartypes.h
505 fmtumax.o: ${BASHINCDIR}/stdc.h
506 fmtumax.o: ${BASHINCDIR}/typemax.h
507 fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
508
509 wcsdup.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
510 wcsdup.o: ${BASHINCDIR}/stdc.h
511 wcsdup.o: ${topdir}/xmalloc.h
512
513 wcswidth.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
514 wcswidth.o: ${BASHINCDIR}/stdc.h
515
516 mbschr.o: ${topdir}/bashansi.h
517 mbschr.o: ${BASHINCDIR}/ansi_stdlib.h
518 mbschr.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
519
520 zgetline.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
521 zgetline.o: ${BASHINCDIR}/stdc.h
522 zgetline.o: ${topdir}/xmalloc.h
523 zgetline.o: ${topdir}/bashtypes.h
524
525 mbscasecmp.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
526 mbscasecmp.o: ${BASHINCDIR}/stdc.h
527 mbscasecmp.o: ${topdir}/xmalloc.h
528
529 mbscmp.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
530 mbscmp.o: ${BASHINCDIR}/stdc.h
531 mbscmp.o: ${topdir}/xmalloc.h
532
533 casemod.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
534 casemod.o: ${BASHINCDIR}/stdc.h
535 casemod.o: ${topdir}/xmalloc.h
536 casemod.o: ${topdir}/bashtypes.h
537 casemod.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
538 casemod.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
539
540 dprintf.o: ${BASHINCDIR}/stdc.h
541
542 input_avail.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
543 input_avail.o: ${BASHINCDIR}/stdc.h
544 input_avail.o: ${topdir}/xmalloc.h ${BASHINCDIR}/posixselect.h
545
546 mktime.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
547 mktime.o: ${BASHINCDIR}/stdc.h
548
549 fnxform.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
550 fnxform.o: ${BASHINCDIR}/stdc.h
551 fnxform.o: ${topdir}/bashtypes.h
552 fnxform.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
553
554 shmbchar.o: ${BASHINCDIR}/shmbchar.h