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