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