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