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