c375c1de548cc4556215c0e3a2744a88ad9dd128
[platform/upstream/bash.git] / lib / sh / Makefile.in
1 #
2 # Makefile for the Bash library
3 #
4 #
5 # Copyright (C) 1998-2002 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 2, or (at your option)
10 # 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, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
20
21 PACKAGE = @PACKAGE_NAME@
22 VERSION = @PACKAGE_VERSION@
23
24 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
25 PACKAGE_NAME = @PACKAGE_NAME@
26 PACKAGE_STRING = @PACKAGE_STRING@
27 PACKAGE_VERSION = @PACKAGE_VERSION@
28
29 srcdir = @srcdir@
30 VPATH = .:@srcdir@
31 topdir = @top_srcdir@
32 BUILD_DIR = @BUILD_DIR@
33
34 LIBBUILD = ${BUILD_DIR}/lib
35
36 BASHINCDIR = ${topdir}/include
37
38 INTL_LIBSRC = ${topdir}/lib/intl
39 INTL_BUILDDIR = ${LIBBUILD}/intl
40 INTL_INC = @INTL_INC@
41 LIBINTL_H = @LIBINTL_H@
42
43 INSTALL = @INSTALL@
44 INSTALL_PROGRAM = @INSTALL_PROGRAM@
45 INSTALL_DATA = @INSTALL_DATA@
46
47 CC = @CC@
48 RANLIB = @RANLIB@
49 AR = @AR@
50 ARFLAGS = @ARFLAGS@
51 RM = rm -f
52 CP = cp
53 MV = mv
54
55 SHELL = @MAKE_SHELL@
56
57 CFLAGS = @CFLAGS@
58 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
59 CPPFLAGS = @CPPFLAGS@
60 LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
61
62 PROFILE_FLAGS = @PROFILE_FLAGS@
63
64 DEFS = @DEFS@
65 LOCAL_DEFS = @LOCAL_DEFS@
66
67 INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)
68
69 CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
70           $(CFLAGS) $(CPPFLAGS) 
71
72 GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
73                  -Wcast-align -Wstrict-prototypes -Wconversion \
74                  -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
75
76 .c.o:
77         $(CC) -c $(CCFLAGS) $<
78
79 # The name of the library target.
80 LIBRARY_NAME = libsh.a
81
82 # The C code source files for this library.
83 CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
84            strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
85            vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
86            inet_aton.c netconn.c netopen.c strpbrk.c timeval.c makepath.c \
87            pathcanon.c pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \
88            shquote.c strtrans.c strindex.c snprintf.c mailstat.c \
89            fmtulong.c fmtullong.c fmtumax.c shmatch.c \
90            strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \
91            mktime.c strftime.c xstrchr.c zcatfd.c 
92
93 # The header files for this library.
94 HSOURCES = 
95
96 # The object files contained in $(LIBRARY_NAME)
97 LIBOBJS = @LIBOBJS@
98 OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o \
99           itos.o zread.o zwrite.o shtty.o shmatch.o \
100           netconn.o netopen.o timeval.o makepath.o pathcanon.o \
101           pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
102           strtrans.o strindex.o snprintf.o mailstat.o fmtulong.o \
103           fmtullong.o fmtumax.o xstrchr.o zcatfd.o ${LIBOBJS}
104
105 SUPPORT = Makefile
106
107 all: $(LIBRARY_NAME)
108
109 $(LIBRARY_NAME): $(OBJECTS)
110         $(RM) $@
111         $(AR) $(ARFLAGS) $@ $(OBJECTS)
112         -test -n "$(RANLIB)" && $(RANLIB) $@
113
114 force:
115
116 # The rule for 'includes' is written funny so that the if statement
117 # always returns TRUE unless there really was an error installing the
118 # include files.
119 install:
120
121 clean:
122         $(RM) $(OBJECTS) $(LIBRARY_NAME)
123
124 realclean distclean maintainer-clean: clean
125         $(RM) Makefile
126
127 mostlyclean: clean
128
129 # Dependencies
130
131 ${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
132         -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
133
134 # rules for losing makes, like SunOS
135 clktck.o: clktck.c
136 clock.o: clock.c
137 fmtullong.o: fmtullong.c
138 fmtulong.o: fmtulong.c
139 fmtumax.o: fmtumax.c
140 getcwd.o: getcwd.c
141 getenv.o: getenv.c
142 inet_aton.o: inet_aton.c
143 itos.o: itos.c
144 mailstat.o: mailstat.c
145 makepath.o: makepath.c
146 memset.o: memset.c
147 mktime.o: mktime.c
148 netconn.o: netconn.c
149 netopen.o: netopen.c
150 oslib.o: oslib.c
151 pathcanon.o: pathcanon.c
152 pathphys.o: pathphys.c
153 rename.o: rename.c
154 setlinebuf.o: setlinebuf.c
155 shquote.o: shquote.c
156 shtty.o: shtty.c
157 snprintf.o: snprintf.c
158 spell.o: spell.c
159 strcasecmp.o: strcasecmp.c
160 strerror.o: strerror.c
161 strftime.o: strftime.c
162 strindex.o: strindex.c
163 stringlist.o: stringlist.c
164 stringvec.o: stringvec.c
165 strpbrk.o: strpbrk.c
166 strtod.o: strtod.c
167 strtoimax.o: strtoimax.c
168 strtol.o: strtol.c
169 strtoll.o: strtoll.c
170 strtoul.o: strtoul.c
171 strtoull.o: strtoull.c
172 strtoumax.o: strtoumax.c
173 strtrans.o: strtrans.c
174 times.o: times.c
175 timeval.o: timeval.c
176 tmpfile.o: tmpfile.c
177 vprint.o: vprint.c
178 xstrchr.o: xstrchr.c
179 zcatfd.o: zcatfd.c
180 zread.o: zread.c
181 zwrite.o: zwrite.c
182
183 # dependencies for c files that include other c files
184 fmtullong.o: fmtulong.c
185 fmtumax.o: fmtulong.c
186 strtoll.o: strtol.c
187 strtoul.o: strtol.c
188 strtoull.o: strtol.c
189
190 # all files in the library depend on config.h
191 clktck.o: ${BUILD_DIR}/config.h
192 clock.o: ${BUILD_DIR}/config.h
193 fmtullong.o: ${BUILD_DIR}/config.h
194 fmtulong.o: ${BUILD_DIR}/config.h
195 fmtumax.o: ${BUILD_DIR}/config.h
196 getcwd.o: ${BUILD_DIR}/config.h
197 getenv.o: ${BUILD_DIR}/config.h
198 inet_aton.o: ${BUILD_DIR}/config.h
199 itos.o: ${BUILD_DIR}/config.h
200 mailstat.o: ${BUILD_DIR}/config.h
201 makepath.o: ${BUILD_DIR}/config.h
202 memset.o: ${BUILD_DIR}/config.h
203 mktime.o: ${BUILD_DIR}/config.h
204 netconn.o: ${BUILD_DIR}/config.h
205 netopen.o: ${BUILD_DIR}/config.h
206 oslib.o: ${BUILD_DIR}/config.h
207 pathcanon.o: ${BUILD_DIR}/config.h
208 pathphys.o: ${BUILD_DIR}/config.h
209 rename.o: ${BUILD_DIR}/config.h
210 setlinebuf.o: ${BUILD_DIR}/config.h
211 shquote.o: ${BUILD_DIR}/config.h
212 shtty.o: ${BUILD_DIR}/config.h
213 snprintf.o: ${BUILD_DIR}/config.h
214 spell.o: ${BUILD_DIR}/config.h
215 strcasecmp.o: ${BUILD_DIR}/config.h
216 strerror.o: ${BUILD_DIR}/config.h
217 strftime.o: ${BUILD_DIR}/config.h
218 strindex.o: ${BUILD_DIR}/config.h
219 stringlist.o: ${BUILD_DIR}/config.h
220 stringvec.o: ${BUILD_DIR}/config.h
221 strpbrk.o: ${BUILD_DIR}/config.h
222 strtod.o: ${BUILD_DIR}/config.h
223 strtoimax.o: ${BUILD_DIR}/config.h
224 strtol.o: ${BUILD_DIR}/config.h
225 strtoll.o: ${BUILD_DIR}/config.h
226 strtoul.o: ${BUILD_DIR}/config.h
227 strtoull.o: ${BUILD_DIR}/config.h
228 strtoumax.o: ${BUILD_DIR}/config.h
229 strtrans.o: ${BUILD_DIR}/config.h
230 times.o: ${BUILD_DIR}/config.h
231 timeval.o: ${BUILD_DIR}/config.h
232 tmpfile.o: ${BUILD_DIR}/config.h
233 vprint.o: ${BUILD_DIR}/config.h
234 xstrchr.o: ${BUILD_DIR}/config.h
235 zcatfd.o: ${BUILD_DIR}/config.h
236 zread.o: ${BUILD_DIR}/config.h
237 zwrite.o: ${BUILD_DIR}/config.h
238
239 clktck.o: ${topdir}/bashtypes.h
240
241 getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
242 getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
243 getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
244
245 getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
246 getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
247 getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
248 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
249 getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
250 getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
251 getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
252 getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
253 getenv.o: ${BUILD_DIR}/version.h
254
255 inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
256 inet_aton.o: ${BASHINCDIR}/stdc.h
257
258 itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
259 itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
260 itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
261 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
262 itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
263 itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
264 itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
265 itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
266
267 makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
268 makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
269 makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
270 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
271 makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
272 makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
273 makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
274 makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
275
276 netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
277 netconn.o: ${topdir}/bashtypes.h
278
279 netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
280 netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
281 netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
282 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
283 netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
284 netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
285 netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
286 netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
287 netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
288
289 oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
290 oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
291 oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
292 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
293 oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
294 oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
295 oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
296 oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
297 oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
298 oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
299
300 pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
301 pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
302 pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
303 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
304 pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
305 pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
306 pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
307 pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
308 pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
309 pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
310
311 pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
312 pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
313 pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
314 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
315 pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
316 pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
317 pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
318 pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
319 pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
320 pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
321
322 rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
323 rename.o: ${BASHINCDIR}/posixstat.h
324
325 setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
326 setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
327
328 shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
329 shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
330
331 shtty.o: ${BASHINCDIR}/shtty.h
332 shtty.o: ${BASHINCDIR}/stdc.h
333
334 snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
335 snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
336 snprintf.o: ${BASHINCDIR}/typemax.h
337
338 spell.o: ${topdir}/bashtypes.h
339 spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
340 spell.o: ${BASHINCDIR}/ansi_stdlib.h
341
342 strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
343 strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
344
345 strerror.o: ${topdir}/bashtypes.h
346 strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
347 strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
348 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
349 strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
350 strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
351 strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
352 strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
353
354 strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
355 strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
356
357 stringlist.o: ${topdir}/bashansi.h
358 stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
359 stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
360 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
361 stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
362 stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
363 stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
364 stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
365
366 stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
367 stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
368 stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
369 stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
370 stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
371 stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
372 stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
373 stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
374
375 strpbrk.o: ${BASHINCDIR}/stdc.h
376
377 strtod.o: ${topdir}/bashansi.h
378 strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
379
380 strtoimax.o: ${BASHINCDIR}/stdc.h
381
382 strtol.o: ${topdir}/bashansi.h
383 strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
384 strtol.o: ${BASHINCDIR}/typemax.h
385
386 strtoll.o: ${topdir}/bashansi.h
387 strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
388 strtoll.o: ${BASHINCDIR}/typemax.h
389
390 strtoul.o: ${topdir}/bashansi.h
391 strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
392 strtoul.o: ${BASHINCDIR}/typemax.h
393
394 strtoull.o: ${topdir}/bashansi.h
395 strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
396 strtoull.o: ${BASHINCDIR}/typemax.h
397
398 strtoumax.o: ${BASHINCDIR}/stdc.h
399
400 strtrans.o: ${topdir}/bashansi.h
401 strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
402 strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
403 strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
404 strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
405 strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
406 strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
407 strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
408 strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
409
410 times.o: ${BASHINCDIR}/systimes.h
411 times.o: ${BASHINCDIR}/posixtime.h
412
413 timeval.o: ${BASHINCDIR}/posixtime.h
414
415 tmpfile.o: ${topdir}/bashtypes.h
416 tmpfile.o: ${BASHINCDIR}/posixstat.h
417 tmpfile.o: ${BASHINCDIR}/filecntl.h
418
419 clock.o: ${BASHINCDIR}/posixtime.h
420
421 mailstat.o: ${topdir}/bashansi.h
422 mailstat.o: ${topdir}/bashtypes.h
423 mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
424 mailstat.o: ${BASHINCDIR}/posixstat.h
425 mailstat.o: ${BASHINCDIR}/posixdir.h
426 mailstat.o: ${BASHINCDIR}/maxpath.h
427
428 fmtulong.o: ${topdir}/bashansi.h
429 fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
430 fmtulong.o: ${BASHINCDIR}/chartypes.h
431 fmtulong.o: ${BASHINCDIR}/stdc.h
432 fmtulong.o: ${BASHINCDIR}/typemax.h
433 fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
434
435 fmtullong.o: ${topdir}/bashansi.h
436 fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
437 fmtullong.o: ${BASHINCDIR}/chartypes.h
438 fmtullong.o: ${BASHINCDIR}/stdc.h
439 fmtullong.o: ${BASHINCDIR}/typemax.h
440 fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
441
442 fmtumax.o: ${topdir}/bashansi.h
443 fmtumax.o: ${BASHINCDIR}/ansi_stdlib.h
444 fmtumax.o: ${BASHINCDIR}/chartypes.h
445 fmtumax.o: ${BASHINCDIR}/stdc.h
446 fmtumax.o: ${BASHINCDIR}/typemax.h
447 fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
448
449 xstrchr.o: ${topdir}/bashansi.h
450 xstrchr.o: ${BASHINCDIR}/ansi_stdlib.h
451 xstrchr.o: ${BASHINCDIR}/shmbutil.h