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