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