]> git.ipfire.org Git - thirdparty/bash.git/blame - builtins/Makefile.in
Bash-4.3 patch 46
[thirdparty/bash.git] / builtins / Makefile.in
CommitLineData
ccc6cda3 1# This Makefile for building libbuiltins.a is in -*- text -*- for Emacs.
bb70624e 2#
ac50fbac 3# Copyright (C) 1996-2009 Free Software Foundation, Inc.
bb70624e 4
3185942a
JA
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
bb70624e 9
3185942a
JA
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
bb70624e 14
3185942a
JA
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
bb70624e 17
0628567a 18PACKAGE = @PACKAGE_NAME@
b80f6443
JA
19PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
20PACKAGE_NAME = @PACKAGE_NAME@
21PACKAGE_STRING = @PACKAGE_STRING@
22PACKAGE_VERSION = @PACKAGE_VERSION@
23
ccc6cda3 24#
b72432fd 25SHELL = @MAKE_SHELL@
d166f048 26RANLIB = @RANLIB@
ccc6cda3 27CC = @CC@
cce855bc 28CC_FOR_BUILD = @CC_FOR_BUILD@
ccc6cda3 29AR = @AR@
b72432fd 30ARFLAGS = @ARFLAGS@
ccc6cda3
JA
31RM = rm -f
32CP = cp
33
bb70624e
JA
34EXEEXT = @EXEEXT@
35
7117c2d2
JA
36prefix = @prefix@
37
ccc6cda3
JA
38srcdir = @srcdir@
39VPATH = .:@srcdir@
40topdir = @top_srcdir@
3185942a
JA
41
42datarootdir = @datarootdir@
43
ccc6cda3 44includedir = @includedir@
7117c2d2 45datadir = @datadir@
3185942a 46localedir = @localedir@
7117c2d2
JA
47
48# Support an alternate destination root directory for package building
49DESTDIR =
50
51INSTALL = @INSTALL@
52INSTALL_DATA = @INSTALL_DATA@
cce855bc 53BUILD_DIR = @BUILD_DIR@
ccc6cda3 54
b80f6443
JA
55LIBBUILD = ${BUILD_DIR}/lib
56
cce855bc 57PROFILE_FLAGS = @PROFILE_FLAGS@
d166f048 58CFLAGS = @CFLAGS@
95732b49 59CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@
d166f048 60CPPFLAGS = @CPPFLAGS@
7117c2d2
JA
61CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
62LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
ccc6cda3 63DEFS = @DEFS@
d166f048 64LOCAL_DEFS = @LOCAL_DEFS@
7117c2d2
JA
65
66LIBS = @LIBS@
cce855bc 67LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
3185942a 68LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD)
cce855bc 69LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
ac50fbac
CR
70LIBS_FOR_BUILD = @LIBS_FOR_BUILD@
71#LIBS_FOR_BUILD = $(LIBS)
ccc6cda3 72
bb70624e
JA
73BASHINCDIR = ${topdir}/include
74
f73dda09
JA
75RL_INCLUDEDIR = @RL_INCLUDEDIR@
76
b80f6443
JA
77INTL_LIBSRC = ${topdir}/lib/intl
78INTL_BUILDDIR = ${LIBBUILD}/intl
3185942a
JA
79INTL_LIBDIR = ${INTL_BUILDDIR}
80INTL_LIBRARY = ${INTL_BUILDDIR}/libintl.a
b80f6443 81INTL_INC = @INTL_INC@
3185942a 82INTL_DEP = @INTL_DEP@
b80f6443
JA
83LIBINTL_H = @LIBINTL_H@
84
7117c2d2
JA
85HELPDIR = @HELPDIR@
86MKDIRS = ${topdir}/support/mkdirs
87
ac50fbac
CR
88HELPFILES_TARGET = @HELPFILES_TARGET@
89
b80f6443 90INCLUDES = -I. -I.. @RL_INCLUDE@ -I$(topdir) -I$(BASHINCDIR) -I$(topdir)/lib -I$(srcdir) ${INTL_INC}
ccc6cda3 91
7117c2d2
JA
92BASE_CCFLAGS = ${PROFILE_FLAGS} $(DEFS) $(LOCAL_DEFS) $(SYSTEM_FLAGS) \
93 ${INCLUDES} $(LOCAL_CFLAGS)
f73dda09 94
7117c2d2
JA
95CCFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(CFLAGS)
96
97CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
f73dda09
JA
98
99GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
100 -Wcast-align -Wstrict-prototypes -Wconversion \
101 -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
ccc6cda3 102
bb70624e 103MKBUILTINS = mkbuiltins$(EXEEXT)
ccc6cda3 104DIRECTDEFINE = -D $(srcdir)
7117c2d2 105HELPDIRDEFINE = @HELPDIRDEFINE@
95732b49 106HELPSTRINGS = @HELPSTRINGS@
ccc6cda3
JA
107
108# xxx this is bad style
109RL_LIBSRC = $(topdir)/lib/readline
110
111.SUFFIXES:
112.SUFFIXES: .def .c .o
113# How to make a .o file from a .def file.
114.def.o:
115 $(RM) $@
116 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
117 $(CC) -c $(CCFLAGS) $*.c || ( $(RM) $*.c ; exit 1 )
118 $(RM) $*.c
119
120# How to make a .c file from a .def file.
121.def.c:
122 $(RM) $@
123 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
124
125# default rule for making a .o file from a .c file
126.c.o:
127 $(RM) $@
128 $(CC) -c $(CCFLAGS) $<
129
130DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
b80f6443
JA
131 $(srcdir)/builtin.def $(srcdir)/caller.def \
132 $(srcdir)/cd.def $(srcdir)/colon.def \
ccc6cda3
JA
133 $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
134 $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
135 $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
136 $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
137 $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
138 $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
139 $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
140 $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
141 $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
142 $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
cce855bc 143 $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
3185942a 144 $(srcdir)/printf.def $(srcdir)/complete.def $(srcdir)/mapfile.def
ccc6cda3
JA
145
146STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bashgetopt.c \
147 getopt.h
148
149OFILES = builtins.o \
b80f6443 150 alias.o bind.o break.o builtin.o caller.o cd.o colon.o command.o \
ccc6cda3 151 common.o declare.o echo.o enable.o eval.o evalfile.o \
3185942a
JA
152 evalstring.o exec.o exit.o fc.o fg_bg.o hash.o help.o history.o \
153 jobs.o kill.o let.o mapfile.o \
ccc6cda3
JA
154 pushd.o read.o return.o set.o setattr.o shift.o source.o \
155 suspend.o test.o times.o trap.o type.o ulimit.o umask.o \
bb70624e 156 wait.o getopts.o shopt.o printf.o getopt.o bashgetopt.o complete.o
ccc6cda3 157
ac50fbac
CR
158CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h tmpbuiltins.c \
159 tmpbuiltins.h
160CREATED_OBJECTS = tmpbuiltins.o gen-helpfiles.o mkbuiltins.o
ccc6cda3 161
ac50fbac
CR
162all: $(MKBUILTINS) libbuiltins.a $(HELPFILES_TARGET)
163targets: libbuiltins.a $(HELPFILES_TARGET)
ccc6cda3 164
cce855bc 165libbuiltins.a: $(MKBUILTINS) $(OFILES) builtins.o
ccc6cda3 166 $(RM) $@
b72432fd 167 $(AR) $(ARFLAGS) $@ $(OFILES)
ccc6cda3
JA
168 -$(RANLIB) $@
169
ac50fbac
CR
170tmpbuiltins.c: $(MKBUILTINS) $(DEFSRC)
171 ./$(MKBUILTINS) -externfile tmpbuiltins.h -structfile $@ \
172 -noproduction -nofunctions \
173 $(DIRECTDEFINE) $(HELPSTRINGS) $(DEFSRC)
174
175tmpbuiltins.h: tmpbuiltins.c
176
177gen-helpfiles.o: ../config.h
178gen-helpfiles.o: gen-helpfiles.c
179 $(RM) $@
180 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
181
182gen-helpfiles: tmpbuiltins.o gen-helpfiles.o
183 $(CC_FOR_BUILD) ${CCFLAGS_FOR_BUILD} $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD)
184
ccc6cda3 185builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
cce855bc
JA
186 @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
187 @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
ccc6cda3 188 ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
95732b49 189 -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
b72432fd 190 @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
cce855bc
JA
191 mv old-builtext.h builtext.h; \
192 else \
193 $(RM) old-builtext.h; \
194 fi
b72432fd 195 @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
cce855bc
JA
196 mv old-builtins.c builtins.c; \
197 else \
198 $(RM) old-builtins.c; \
199 fi
ccc6cda3 200
ac50fbac
CR
201helpdoc: gen-helpfiles
202 ./gen-helpfiles ${HELPDIRDEFINE}
7117c2d2
JA
203
204install-help:
205 @-if test -n "${HELPDIR}" && test -d helpfiles ; then \
0628567a 206 test -d $(DESTDIR)${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
95732b49 207 ( for f in helpfiles/*; do \
7117c2d2
JA
208 echo installing $$f; \
209 ${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
210 done; ) ; \
211 fi
212
213install: @HELPINSTALL@
214
cce855bc
JA
215mkbuiltins.o: ../config.h
216mkbuiltins.o: mkbuiltins.c
217 $(RM) $@
f73dda09 218 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
cce855bc 219
bb70624e 220mkbuiltins$(EXEEXT): mkbuiltins.o
7117c2d2 221 $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
ccc6cda3
JA
222
223# rules for deficient makes, like SunOS
cce855bc
JA
224mkbuiltins.o: mkbuiltins.c
225builtins.o: builtins.c
ccc6cda3
JA
226common.o: common.c
227bashgetopt.o: bashgetopt.c
228getopt.o: getopt.c
cce855bc 229evalstring.o: evalstring.c
ac50fbac
CR
230evalfile.o: evalfile.c
231
232tmpbuiltins.o: tmpbuiltins.c
233gen-helpfiles.o: gen-helpfiles.c
ccc6cda3 234
e8ce775d 235ulimit.o: pipesize.h
ccc6cda3
JA
236
237pipesize.h: psize.aux
b72432fd 238 $(SHELL) $(srcdir)/psize.sh > $@
ccc6cda3 239
ac50fbac
CR
240# Technically this is wrong; the pipe size should be for the target system,
241# not the build host.
ccc6cda3 242psize.aux: psize.c
ac50fbac 243 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(srcdir)/psize.c
ccc6cda3
JA
244
245documentation: builtins.texi
246
ccc6cda3
JA
247builtins.texi: $(MKBUILTINS)
248 ./$(MKBUILTINS) -documentonly $(DEFSRC)
249
250clean:
ac50fbac
CR
251 $(RM) $(OFILES) $(CREATED_FILES) libbuiltins.a
252 $(RM) $(MKBUILTINS) gen-helpfiles $(CREATED_OBJECTS)
7117c2d2 253 -test -d helpfiles && $(RM) -r helpfiles
ccc6cda3
JA
254
255mostlyclean:
256 $(RM) $(OFILES) libbuiltins.a
257
258distclean maintainer-clean: clean
259 $(RM) Makefile
260
7117c2d2
JA
261$(OFILES): $(MKBUILTINS) ../config.h
262
b80f6443
JA
263../version.h: ../config.h ../Makefile Makefile
264 -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
265
266# maintainer special - for now
267po: builtins.c
268 xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
269
3185942a
JA
270${LIBINTL_H}:
271 @echo making $@ in ${INTL_BUILDDIR}
272 @(cd ${INTL_BUILDDIR} && \
273 $(MAKE) $(MFLAGS) libintl.h) || exit 1
274
b80f6443
JA
275# dependencies
276
ccc6cda3
JA
277alias.o: alias.def
278bind.o: bind.def
279break.o: break.def
280builtin.o: builtin.def
b80f6443 281caller.o: caller.def
ccc6cda3
JA
282cd.o: cd.def
283colon.o: colon.def
284command.o: command.def
285declare.o: declare.def
286echo.o: echo.def
287enable.o: enable.def
288eval.o: eval.def
289exec.o: exec.def
290exit.o: exit.def
291fc.o: fc.def
292fg_bg.o: fg_bg.def
293hash.o: hash.def
294help.o: help.def
295history.o: history.def
296jobs.o: jobs.def
297kill.o: kill.def
298let.o: let.def
3185942a 299mapfile.o: mapfile.def
cce855bc 300printf.o: printf.def
ccc6cda3
JA
301pushd.o: pushd.def
302read.o: read.def
303return.o: return.def
304set.o: set.def
305setattr.o: setattr.def
306shift.o: shift.def
e8ce775d 307shopt.o: shopt.def
ccc6cda3
JA
308source.o: source.def
309suspend.o: suspend.def
310test.o: test.def
311times.o: times.def
312trap.o: trap.def
313type.o: type.def
cce855bc 314ulimit.o: ulimit.def
ccc6cda3
JA
315umask.o: umask.def
316wait.o: wait.def
317getopts.o: getopts.def
318reserved.o: reserved.def
bb70624e 319complete.o: complete.def
ccc6cda3 320
d166f048 321# C files
bb70624e 322bashgetopt.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
28ef6c31 323bashgetopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h
f73dda09
JA
324bashgetopt.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
325bashgetopt.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
d166f048
JA
326bashgetopt.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
327bashgetopt.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
b80f6443 328bashgetopt.o: ../pathnames.h $(topdir)/externs.h $(srcdir)/common.h
f73dda09 329bashgetopt.o: $(BASHINCDIR)/chartypes.h
bb70624e 330common.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
28ef6c31 331common.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
d166f048 332common.o: $(topdir)/sig.h $(topdir)/command.h
f73dda09
JA
333common.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/stdc.h $(BASHINCDIR)/memalloc.h
334common.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
d166f048 335common.o: $(topdir)/siglist.h $(topdir)/bashhist.h $(topdir)/quit.h
bb70624e 336common.o: $(topdir)/unwind_prot.h $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h
d166f048
JA
337common.o: $(topdir)/builtins.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
338common.o: $(topdir)/subst.h $(topdir)/execute_cmd.h $(topdir)/error.h
b80f6443 339common.o: $(topdir)/externs.h ../pathnames.h ./builtext.h
f73dda09 340common.o: $(BASHINCDIR)/chartypes.h
bb70624e
JA
341evalfile.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h ${BASHINCDIR}/filecntl.h
342evalfile.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
28ef6c31 343evalfile.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h
f73dda09
JA
344evalfile.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
345evalfile.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
d166f048
JA
346evalfile.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
347evalfile.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
b80f6443 348evalfile.o: ../pathnames.h $(topdir)/externs.h
d166f048
JA
349evalfile.o: $(topdir)/jobs.h $(topdir)/builtins.h $(topdir)/flags.h
350evalfile.o: $(topdir)/input.h $(topdir)/execute_cmd.h
351evalfile.o: $(topdir)/bashhist.h $(srcdir)/common.h
bb70624e 352evalstring.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
28ef6c31 353evalstring.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
d166f048 354evalstring.o: $(topdir)/sig.h $(topdir)/command.h $(topdir)/siglist.h
f73dda09 355evalstring.o: $(BASHINCDIR)/memalloc.h $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
d166f048 356evalstring.o: $(topdir)/quit.h $(topdir)/unwind_prot.h
bb70624e 357evalstring.o: $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h $(topdir)/builtins.h
d166f048
JA
358evalstring.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
359evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
360evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
361evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
0001803f 362evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h
495aee44 363#evalstring.o: $(topdir)/y.tab.h
bb70624e 364getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
28ef6c31 365getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
f73dda09 366getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 367getopt.o: $(topdir)/quit.h $(BASHINCDIR)/maxpath.h $(topdir)/unwind_prot.h
d166f048 368getopt.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
b80f6443
JA
369getopt.o: $(topdir)/sig.h ../pathnames.h $(topdir)/externs.h
370getopt.o: $(srcdir)/getopt.h
bb70624e
JA
371mkbuiltins.o: ../config.h $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
372mkbuiltins.o: ${BASHINCDIR}/filecntl.h
373mkbuiltins.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
d166f048
JA
374
375# def files
bb70624e 376alias.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 377alias.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
ccc6cda3
JA
378alias.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
379alias.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/common.h
f73dda09 380alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 381alias.o: ../pathnames.h
bb70624e 382bind.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
ccc6cda3
JA
383bind.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
384bind.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/bashgetopt.h
f73dda09
JA
385bind.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h $(topdir)/bashline.h
386bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 387bind.o: ../pathnames.h
bb70624e 388break.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 389break.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 390break.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 391break.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 392break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 393break.o: ../pathnames.h
bb70624e 394builtin.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 395builtin.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
bb70624e 396builtin.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
ccc6cda3 397builtin.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
f73dda09 398builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 399builtin.o: $(srcdir)/bashgetopt.h ../pathnames.h
b80f6443
JA
400caller.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
401caller.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
402caller.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
403caller.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
404caller.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ./builtext.h
0001803f 405caller.o: ${BASHINCDIR}/chartypes.h $(topdir)/bashtypes.h ../pathnames.h
bb70624e 406cd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
f73dda09 407cd.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
ccc6cda3 408cd.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
f73dda09 409cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 410cd.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
bb70624e 411command.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 412command.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
bb70624e 413command.o: $(topdir)/quit.h $(srcdir)/bashgetopt.h $(BASHINCDIR)/maxpath.h
ccc6cda3 414command.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
f73dda09 415command.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 416command.o: ../pathnames.h
bb70624e 417declare.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 418declare.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 419declare.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 420declare.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 421declare.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
7117c2d2 422declare.o: $(topdir)/arrayfunc.h $(srcdir)/bashgetopt.h
0001803f 423declare.o: ./builtext.h ../pathnames.h
bb70624e 424echo.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
f73dda09 425echo.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
ccc6cda3 426echo.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
f73dda09 427echo.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 428echo.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
bb70624e 429enable.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 430enable.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3
JA
431enable.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
432enable.o: $(topdir)/subst.h $(topdir)/externs.h
f73dda09 433enable.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 434enable.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
bb70624e
JA
435enable.o: $(topdir)/pcomplete.h
436eval.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 437eval.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 438eval.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
b80f6443 439eval.o: $(topdir)/subst.h $(topdir)/externs.h
f73dda09 440eval.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 441eval.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
d166f048 442exec.o: $(topdir)/bashtypes.h
bb70624e 443exec.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 444exec.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3
JA
445exec.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
446exec.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/flags.h
f73dda09 447exec.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 448exec.o: $(srcdir)/common.h $(topdir)/execute_cmd.h $(BASHINCDIR)/maxpath.h
0001803f 449exec.o: $(topdir)/findcmd.h $(topdir)/jobs.h ../pathnames.h
d166f048 450exit.o: $(topdir)/bashtypes.h
bb70624e 451exit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 452exit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 453exit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
95732b49 454exit.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/jobs.h
f73dda09 455exit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 456exit.o: $(BASHINCDIR)/maxpath.h ./builtext.h ../pathnames.h
bb70624e 457fc.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
ccc6cda3
JA
458fc.o: $(topdir)/builtins.h $(topdir)/command.h $(srcdir)/bashgetopt.h
459fc.o: $(topdir)/bashhist.h
bb70624e 460fc.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
f73dda09 461fc.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
ccc6cda3 462fc.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
28ef6c31 463fc.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/shell.h $(topdir)/syntax.h
f73dda09
JA
464fc.o: $(topdir)/flags.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
465fc.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h $(BASHINCDIR)/chartypes.h
0001803f 466fc.o: ../pathnames.h
7117c2d2 467fg_bg.o: $(topdir)/bashtypes.h $(srcdir)/bashgetopt.h
bb70624e 468fg_bg.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 469fg_bg.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 470fg_bg.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 471fg_bg.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 472fg_bg.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 473fg_bg.o: $(topdir)/jobs.h ../pathnames.h
bb70624e 474getopts.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 475getopts.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 476getopts.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 477getopts.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 478getopts.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 479getopts.o: ../pathnames.h
ccc6cda3 480hash.o: $(topdir)/builtins.h $(topdir)/command.h $(topdir)/quit.h
cce855bc 481hash.o: $(topdir)/findcmd.h $(topdir)/hashlib.h
bb70624e 482hash.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09
JA
483hash.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
484hash.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 485hash.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
bb70624e 486help.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 487help.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 488help.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 489help.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 490help.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 491help.o: ${srcdir}/common.h ../pathnames.h
d166f048 492history.o: $(topdir)/bashtypes.h
bb70624e 493history.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 494history.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 495history.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
b80f6443 496history.o: $(topdir)/subst.h $(topdir)/externs.h
28ef6c31 497history.o: ${BASHINCDIR}/filecntl.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
f73dda09 498history.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/bashhist.h $(BASHINCDIR)/maxpath.h
0001803f 499history.o: ../pathnames.h
bb70624e 500inlib.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09
JA
501inlib.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
502inlib.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 503inlib.o: $(BASHINCDIR)/maxpath.h $(topdir)/subst.h $(topdir)/externs.h
0001803f 504inlib.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h ../pathnames.h
bb70624e 505jobs.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
f73dda09 506jobs.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(srcdir)/bashgetopt.h
95732b49 507jobs.o: $(BASHINCDIR)/maxpath.h $(topdir)/externs.h $(topdir)/jobs.h
ccc6cda3 508jobs.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
f73dda09 509jobs.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 510jobs.o: ../pathnames.h
bb70624e 511kill.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
f73dda09 512kill.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
ccc6cda3 513kill.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
28ef6c31 514kill.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/trap.h $(topdir)/unwind_prot.h
f73dda09 515kill.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/maxpath.h
0001803f 516kill.o: $(topdir)/jobs.h ../pathnames.h
bb70624e 517let.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 518let.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 519let.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 520let.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 521let.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 522let.o: ../pathnames.h
bb70624e 523printf.o: ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/bashjmp.h
f73dda09 524printf.o: $(topdir)/command.h $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
cce855bc
JA
525printf.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
526printf.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
b80f6443 527printf.o: ../pathnames.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
f73dda09
JA
528printf.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/stdc.h $(srcdir)/bashgetopt.h
529printf.o: $(topdir)/bashtypes.h ${srcdir}/common.h $(BASHINCDIR)/chartypes.h
0001803f 530printf.o: ../pathnames.h
bb70624e 531pushd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 532pushd.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 533pushd.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
b80f6443 534pushd.o: $(topdir)/subst.h $(topdir)/externs.h
f73dda09 535pushd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 536pushd.o: $(BASHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
0001803f 537pushd.o: ../pathnames.h
bb70624e 538read.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 539read.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 540read.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 541read.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 542read.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 543read.o: $(BASHINCDIR)/shtty.h
0001803f 544read.o: $(topdir)/arrayfunc.h ../pathnames.h
bb70624e 545return.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 546return.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 547return.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 548return.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 549return.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 550return.o: ../pathnames.h
bb70624e 551set.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 552set.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
ccc6cda3 553set.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
f73dda09 554set.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 555set.o: $(BASHINCDIR)/maxpath.h $(topdir)/error.h
0001803f 556set.o: $(topdir)/arrayfunc.h ../pathnames.h
bb70624e 557setattr.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 558setattr.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
ccc6cda3
JA
559setattr.o: $(topdir)/quit.h $(srcdir)/common.h $(srcdir)/bashgetopt.h
560setattr.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
b80f6443 561setattr.o: $(topdir)/externs.h
f73dda09 562setattr.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 563setattr.o: $(topdir)/arrayfunc.h ../pathnames.h
bb70624e 564shift.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 565shift.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 566shift.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 567shift.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 568shift.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f
CR
569shift.o: ../pathnames.h
570shopt.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
571shopt.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
572shopt.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
573shopt.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
574shopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
575shopt.o: $(srcdir)/common.h $(srcdir)/bashgetopt.h ../pathnames.h
ac50fbac 576shopt.o: $(topdir)/bashhist.h $(topdir)/bashline.h
bb70624e 577source.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 578source.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/findcmd.h
ccc6cda3 579source.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 580source.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 581source.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
b80f6443 582source.o: $(srcdir)/bashgetopt.h $(topdir)/flags.h $(topdir)/trap.h
0001803f 583source.o: ../pathnames.h
bb70624e 584suspend.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 585suspend.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 586suspend.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 587suspend.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 588suspend.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 589suspend.o: $(topdir)/jobs.h ../pathnames.h
bb70624e 590test.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 591test.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 592test.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 593test.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 594test.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 595test.o: $(topdir)/test.h ../pathnames.h
bb70624e 596times.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 597times.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 598times.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 599times.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 600times.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 601times.o: $(BASHINCDIR)/posixtime.h ../pathnames.h
bb70624e 602trap.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 603trap.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
bb70624e 604trap.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
ccc6cda3 605trap.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
f73dda09 606trap.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 607trap.o: $(topdir)/findcmd.h ../pathnames.h
bb70624e 608type.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 609type.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
bb70624e 610type.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
ccc6cda3 611type.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
0001803f 612type.o: $(topdir)/externs.h $(topdir)/hashcmd.h ../pathnames.h
f73dda09 613type.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
bb70624e 614ulimit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 615ulimit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 616ulimit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 617ulimit.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 618ulimit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 619ulimit.o: ../pathnames.h
bb70624e 620umask.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 621umask.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 622umask.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 623umask.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 624umask.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 625umask.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
bb70624e 626wait.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
f73dda09 627wait.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ccc6cda3 628wait.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
bb70624e 629wait.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
f73dda09 630wait.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
95732b49 631wait.o: $(topdir)/jobs.h
0001803f 632wait.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
ccc6cda3 633
0001803f 634complete.o: ../config.h ../pathnames.h
28ef6c31 635complete.o: ${topdir}/shell.h $(topdir)/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h ${topdir}/sig.h
bb70624e
JA
636complete.o: ${topdir}/unwind_prot.h ${topdir}/variables.h
637complete.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
638complete.o: ${topdir}/builtins.h
639complete.o: ${topdir}/pcomplete.h
640complete.o: ${srcdir}/common.h ${srcdir}/bashgetopt.h
3185942a
JA
641mapfile.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
642mapfile.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
643mapfile.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
644mapfile.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
645mapfile.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/variables.h $(topdir)/conftypes.h
0001803f 646mapfile.o: $(topdir)/arrayfunc.h ../pathnames.h
bb70624e 647
ccc6cda3 648#bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
b80f6443
JA
649
650# libintl dependencies
651bind.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
652break.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
653caller.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
654cd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
655common.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
656complete.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
657declare.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
658enable.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
659evalfile.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
660exec.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
661exit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
662fc.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
663fg_bg.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
664getopt.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
665hash.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
666help.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
667history.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
668inlib.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
669jobs.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
670kill.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
671let.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
3185942a
JA
672mapfile.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
673mkbuiltins.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
b80f6443
JA
674printf.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
675pushd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
676read.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
677return.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
678set.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
679setattr.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
680shift.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
681shopt.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
682source.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
683suspend.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
684type.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
685ulimit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
686umask.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h