]> git.ipfire.org Git - thirdparty/bash.git/blame - lib/sh/Makefile.in
Imported from ../bash-3.2.tar.gz.
[thirdparty/bash.git] / lib / sh / Makefile.in
CommitLineData
cce855bc
JA
1#
2# Makefile for the Bash library
3#
bb70624e 4#
95732b49 5# Copyright (C) 1998-2005 Free Software Foundation, Inc.
bb70624e
JA
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.
cce855bc 20
b80f6443
JA
21PACKAGE = @PACKAGE_NAME@
22VERSION = @PACKAGE_VERSION@
23
24PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
25PACKAGE_NAME = @PACKAGE_NAME@
26PACKAGE_STRING = @PACKAGE_STRING@
27PACKAGE_VERSION = @PACKAGE_VERSION@
28
cce855bc
JA
29srcdir = @srcdir@
30VPATH = .:@srcdir@
31topdir = @top_srcdir@
32BUILD_DIR = @BUILD_DIR@
33
b80f6443
JA
34LIBBUILD = ${BUILD_DIR}/lib
35
bb70624e 36BASHINCDIR = ${topdir}/include
cce855bc 37
b80f6443
JA
38INTL_LIBSRC = ${topdir}/lib/intl
39INTL_BUILDDIR = ${LIBBUILD}/intl
40INTL_INC = @INTL_INC@
41LIBINTL_H = @LIBINTL_H@
42
cce855bc
JA
43INSTALL = @INSTALL@
44INSTALL_PROGRAM = @INSTALL_PROGRAM@
45INSTALL_DATA = @INSTALL_DATA@
46
47CC = @CC@
48RANLIB = @RANLIB@
49AR = @AR@
b72432fd 50ARFLAGS = @ARFLAGS@
cce855bc
JA
51RM = rm -f
52CP = cp
53MV = mv
54
b72432fd
JA
55SHELL = @MAKE_SHELL@
56
cce855bc 57CFLAGS = @CFLAGS@
f73dda09 58LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
cce855bc
JA
59CPPFLAGS = @CPPFLAGS@
60LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
61
62PROFILE_FLAGS = @PROFILE_FLAGS@
63
64DEFS = @DEFS@
65LOCAL_DEFS = @LOCAL_DEFS@
66
b80f6443 67INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)
cce855bc
JA
68
69CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
70 $(CFLAGS) $(CPPFLAGS)
71
f73dda09
JA
72GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
73 -Wcast-align -Wstrict-prototypes -Wconversion \
74 -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
75
cce855bc
JA
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.
bb70624e 83CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
cce855bc 84 strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
bb70624e 85 vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
7117c2d2
JA
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 \
95732b49 89 fmtulong.c fmtullong.c fmtumax.c shmatch.c strnlen.c \
b80f6443 90 strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \
0628567a
JA
91 mktime.c strftime.c xstrchr.c zcatfd.c winsize.c eaccess.c \
92 wcsdup.c
cce855bc
JA
93
94# The header files for this library.
95HSOURCES =
96
97# The object files contained in $(LIBRARY_NAME)
f73dda09 98LIBOBJS = @LIBOBJS@
95732b49 99OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o strnlen.o \
0628567a 100 itos.o zread.o zwrite.o shtty.o shmatch.o eaccess.o \
7117c2d2 101 netconn.o netopen.o timeval.o makepath.o pathcanon.o \
28ef6c31 102 pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
f73dda09 103 strtrans.o strindex.o snprintf.o mailstat.o fmtulong.o \
0628567a
JA
104 fmtullong.o fmtumax.o xstrchr.o zcatfd.o winsize.o wcsdup.o \
105 ${LIBOBJS}
cce855bc
JA
106
107SUPPORT = Makefile
108
109all: $(LIBRARY_NAME)
110
111$(LIBRARY_NAME): $(OBJECTS)
112 $(RM) $@
b72432fd 113 $(AR) $(ARFLAGS) $@ $(OBJECTS)
cce855bc
JA
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
b80f6443
JA
133${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
134 -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
135
cce855bc
JA
136# rules for losing makes, like SunOS
137clktck.o: clktck.c
bb70624e 138clock.o: clock.c
0628567a 139eaccess.o: eaccess.c
f73dda09
JA
140fmtullong.o: fmtullong.c
141fmtulong.o: fmtulong.c
7117c2d2 142fmtumax.o: fmtumax.c
cce855bc
JA
143getcwd.o: getcwd.c
144getenv.o: getenv.c
bb70624e 145inet_aton.o: inet_aton.c
cce855bc 146itos.o: itos.c
f73dda09 147mailstat.o: mailstat.c
28ef6c31 148makepath.o: makepath.c
7117c2d2
JA
149memset.o: memset.c
150mktime.o: mktime.c
151netconn.o: netconn.c
bb70624e 152netopen.o: netopen.c
cce855bc 153oslib.o: oslib.c
28ef6c31
JA
154pathcanon.o: pathcanon.c
155pathphys.o: pathphys.c
b72432fd 156rename.o: rename.c
cce855bc 157setlinebuf.o: setlinebuf.c
bb70624e
JA
158shquote.o: shquote.c
159shtty.o: shtty.c
f73dda09 160snprintf.o: snprintf.c
28ef6c31 161spell.o: spell.c
cce855bc
JA
162strcasecmp.o: strcasecmp.c
163strerror.o: strerror.c
7117c2d2 164strftime.o: strftime.c
28ef6c31
JA
165strindex.o: strindex.c
166stringlist.o: stringlist.c
167stringvec.o: stringvec.c
95732b49 168strnlen.o: strnlen.c
bb70624e 169strpbrk.o: strpbrk.c
cce855bc 170strtod.o: strtod.c
f73dda09 171strtoimax.o: strtoimax.c
cce855bc 172strtol.o: strtol.c
f73dda09 173strtoll.o: strtoll.c
cce855bc 174strtoul.o: strtoul.c
f73dda09
JA
175strtoull.o: strtoull.c
176strtoumax.o: strtoumax.c
28ef6c31 177strtrans.o: strtrans.c
bb70624e
JA
178times.o: times.c
179timeval.o: timeval.c
28ef6c31 180tmpfile.o: tmpfile.c
cce855bc 181vprint.o: vprint.c
0628567a 182wcsdup.o: wcsdup.c
7117c2d2
JA
183xstrchr.o: xstrchr.c
184zcatfd.o: zcatfd.c
bb70624e
JA
185zread.o: zread.c
186zwrite.o: zwrite.c
cce855bc 187
f73dda09
JA
188# dependencies for c files that include other c files
189fmtullong.o: fmtulong.c
7117c2d2 190fmtumax.o: fmtulong.c
f73dda09
JA
191strtoll.o: strtol.c
192strtoul.o: strtol.c
193strtoull.o: strtol.c
194
cce855bc
JA
195# all files in the library depend on config.h
196clktck.o: ${BUILD_DIR}/config.h
bb70624e 197clock.o: ${BUILD_DIR}/config.h
0628567a 198eaccess.o: ${BUILD_DIR}/config.h
f73dda09
JA
199fmtullong.o: ${BUILD_DIR}/config.h
200fmtulong.o: ${BUILD_DIR}/config.h
7117c2d2 201fmtumax.o: ${BUILD_DIR}/config.h
cce855bc
JA
202getcwd.o: ${BUILD_DIR}/config.h
203getenv.o: ${BUILD_DIR}/config.h
bb70624e 204inet_aton.o: ${BUILD_DIR}/config.h
cce855bc 205itos.o: ${BUILD_DIR}/config.h
f73dda09 206mailstat.o: ${BUILD_DIR}/config.h
28ef6c31 207makepath.o: ${BUILD_DIR}/config.h
7117c2d2
JA
208memset.o: ${BUILD_DIR}/config.h
209mktime.o: ${BUILD_DIR}/config.h
210netconn.o: ${BUILD_DIR}/config.h
bb70624e 211netopen.o: ${BUILD_DIR}/config.h
cce855bc 212oslib.o: ${BUILD_DIR}/config.h
28ef6c31
JA
213pathcanon.o: ${BUILD_DIR}/config.h
214pathphys.o: ${BUILD_DIR}/config.h
b72432fd 215rename.o: ${BUILD_DIR}/config.h
cce855bc 216setlinebuf.o: ${BUILD_DIR}/config.h
bb70624e
JA
217shquote.o: ${BUILD_DIR}/config.h
218shtty.o: ${BUILD_DIR}/config.h
f73dda09 219snprintf.o: ${BUILD_DIR}/config.h
28ef6c31 220spell.o: ${BUILD_DIR}/config.h
cce855bc
JA
221strcasecmp.o: ${BUILD_DIR}/config.h
222strerror.o: ${BUILD_DIR}/config.h
7117c2d2 223strftime.o: ${BUILD_DIR}/config.h
28ef6c31
JA
224strindex.o: ${BUILD_DIR}/config.h
225stringlist.o: ${BUILD_DIR}/config.h
226stringvec.o: ${BUILD_DIR}/config.h
95732b49 227strnlen.o: ${BUILD_DIR}/config.h
bb70624e 228strpbrk.o: ${BUILD_DIR}/config.h
cce855bc 229strtod.o: ${BUILD_DIR}/config.h
f73dda09 230strtoimax.o: ${BUILD_DIR}/config.h
cce855bc 231strtol.o: ${BUILD_DIR}/config.h
f73dda09 232strtoll.o: ${BUILD_DIR}/config.h
cce855bc 233strtoul.o: ${BUILD_DIR}/config.h
f73dda09
JA
234strtoull.o: ${BUILD_DIR}/config.h
235strtoumax.o: ${BUILD_DIR}/config.h
28ef6c31 236strtrans.o: ${BUILD_DIR}/config.h
bb70624e
JA
237times.o: ${BUILD_DIR}/config.h
238timeval.o: ${BUILD_DIR}/config.h
28ef6c31 239tmpfile.o: ${BUILD_DIR}/config.h
cce855bc 240vprint.o: ${BUILD_DIR}/config.h
0628567a 241wcsdup.o: ${BUILD_DIR}/config.h
7117c2d2
JA
242xstrchr.o: ${BUILD_DIR}/config.h
243zcatfd.o: ${BUILD_DIR}/config.h
bb70624e
JA
244zread.o: ${BUILD_DIR}/config.h
245zwrite.o: ${BUILD_DIR}/config.h
cce855bc
JA
246
247clktck.o: ${topdir}/bashtypes.h
248
bb70624e
JA
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
cce855bc 252
bb70624e 253getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
28ef6c31 254getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
bb70624e 255getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
f73dda09 256getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
cce855bc
JA
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
b80f6443
JA
260getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
261getenv.o: ${BUILD_DIR}/version.h
cce855bc 262
bb70624e
JA
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
28ef6c31 267itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
bb70624e 268itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
f73dda09 269itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
cce855bc
JA
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
b80f6443 273itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
cce855bc 274
28ef6c31
JA
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
f73dda09 278makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 282makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 283
7117c2d2
JA
284netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
285netconn.o: ${topdir}/bashtypes.h
286
f73dda09
JA
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
b80f6443
JA
294netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
295netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
bb70624e
JA
296
297oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
28ef6c31 298oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
bb70624e 299oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
f73dda09 300oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
cce855bc
JA
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
b80f6443 304oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
bb70624e 305oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
f73dda09 306oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
cce855bc 307
28ef6c31
JA
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
f73dda09 311pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 315pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 316pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
f73dda09 317pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
28ef6c31
JA
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
f73dda09 322pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 326pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 327pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
f73dda09 328pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
28ef6c31 329
bb70624e 330rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
7117c2d2 331rename.o: ${BASHINCDIR}/posixstat.h
b72432fd 332
f73dda09
JA
333setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
334setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
335
0628567a
JA
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
f73dda09
JA
349shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
350shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
351
bb70624e
JA
352shtty.o: ${BASHINCDIR}/shtty.h
353shtty.o: ${BASHINCDIR}/stdc.h
354
f73dda09
JA
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
28ef6c31
JA
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
f73dda09 364strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
cce855bc
JA
365
366strerror.o: ${topdir}/bashtypes.h
28ef6c31 367strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
bb70624e 368strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
f73dda09 369strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
cce855bc
JA
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
b80f6443 373strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
cce855bc 374
28ef6c31 375strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
f73dda09 376strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
28ef6c31
JA
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
f73dda09 381stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 385stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 386
f73dda09 387stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
28ef6c31
JA
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
f73dda09 390stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 394stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 395
95732b49
JA
396strnlen.o: ${BASHINCDIR}/stdc.h
397
bb70624e
JA
398strpbrk.o: ${BASHINCDIR}/stdc.h
399
cce855bc 400strtod.o: ${topdir}/bashansi.h
f73dda09
JA
401strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
402
403strtoimax.o: ${BASHINCDIR}/stdc.h
cce855bc
JA
404
405strtol.o: ${topdir}/bashansi.h
f73dda09
JA
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
cce855bc
JA
412
413strtoul.o: ${topdir}/bashansi.h
f73dda09
JA
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
bb70624e 422
28ef6c31 423strtrans.o: ${topdir}/bashansi.h
f73dda09 424strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
28ef6c31
JA
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
f73dda09 427strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
28ef6c31
JA
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
b80f6443 431strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
28ef6c31 432
bb70624e
JA
433times.o: ${BASHINCDIR}/systimes.h
434times.o: ${BASHINCDIR}/posixtime.h
435
436timeval.o: ${BASHINCDIR}/posixtime.h
437
28ef6c31
JA
438tmpfile.o: ${topdir}/bashtypes.h
439tmpfile.o: ${BASHINCDIR}/posixstat.h
440tmpfile.o: ${BASHINCDIR}/filecntl.h
441
bb70624e 442clock.o: ${BASHINCDIR}/posixtime.h
f73dda09
JA
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
b80f6443 456fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
f73dda09
JA
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
b80f6443 463fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
7117c2d2
JA
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
b80f6443 470fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
7117c2d2 471
0628567a
JA
472wcsdup.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
473wcsdup.o: ${BASHINCDIR}/stdc.h
474wcsdup.o: ${topdir}/xmalloc.h
475
7117c2d2
JA
476xstrchr.o: ${topdir}/bashansi.h
477xstrchr.o: ${BASHINCDIR}/ansi_stdlib.h
478xstrchr.o: ${BASHINCDIR}/shmbutil.h