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