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