3d8bad4df1380b9defc253186417bc8d30540bd7
[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 ../pathnames.h
337 #evalstring.o: $(topdir)/y.tab.h
338 getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
339 getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
340 getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
341 getopt.o: $(topdir)/quit.h $(BASHINCDIR)/maxpath.h $(topdir)/unwind_prot.h
342 getopt.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
343 getopt.o: $(topdir)/sig.h ../pathnames.h $(topdir)/externs.h
344 getopt.o: $(srcdir)/getopt.h 
345 mkbuiltins.o: ../config.h $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
346 mkbuiltins.o: ${BASHINCDIR}/filecntl.h
347 mkbuiltins.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
348
349 # def files
350 alias.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
351 alias.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
352 alias.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
353 alias.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/common.h
354 alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
355 alias.o: ../pathnames.h
356 bind.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
357 bind.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
358 bind.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/bashgetopt.h
359 bind.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h $(topdir)/bashline.h
360 bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
361 bind.o: ../pathnames.h
362 break.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h 
363 break.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
364 break.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
365 break.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
366 break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
367 break.o: ../pathnames.h
368 builtin.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
369 builtin.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
370 builtin.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
371 builtin.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
372 builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
373 builtin.o: $(srcdir)/bashgetopt.h ../pathnames.h
374 caller.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
375 caller.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
376 caller.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
377 caller.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
378 caller.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ./builtext.h
379 caller.o: ${BASHINCDIR}/chartypes.h $(topdir)/bashtypes.h ../pathnames.h
380 cd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
381 cd.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
382 cd.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
383 cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
384 cd.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
385 command.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
386 command.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
387 command.o: $(topdir)/quit.h $(srcdir)/bashgetopt.h $(BASHINCDIR)/maxpath.h
388 command.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
389 command.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
390 command.o: ../pathnames.h
391 declare.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
392 declare.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
393 declare.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
394 declare.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
395 declare.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
396 declare.o: $(topdir)/arrayfunc.h $(srcdir)/bashgetopt.h
397 declare.o: ./builtext.h ../pathnames.h
398 echo.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
399 echo.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
400 echo.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
401 echo.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
402 echo.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
403 enable.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
404 enable.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
405 enable.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
406 enable.o: $(topdir)/subst.h $(topdir)/externs.h
407 enable.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
408 enable.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
409 enable.o: $(topdir)/pcomplete.h
410 eval.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
411 eval.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
412 eval.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
413 eval.o: $(topdir)/subst.h $(topdir)/externs.h 
414 eval.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
415 eval.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
416 exec.o: $(topdir)/bashtypes.h
417 exec.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
418 exec.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
419 exec.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
420 exec.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/flags.h
421 exec.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
422 exec.o: $(srcdir)/common.h $(topdir)/execute_cmd.h $(BASHINCDIR)/maxpath.h
423 exec.o: $(topdir)/findcmd.h $(topdir)/jobs.h ../pathnames.h
424 exit.o: $(topdir)/bashtypes.h
425 exit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
426 exit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
427 exit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
428 exit.o: $(topdir)/subst.h $(topdir)/externs.h  $(topdir)/jobs.h
429 exit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
430 exit.o: $(BASHINCDIR)/maxpath.h ./builtext.h ../pathnames.h
431 fc.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
432 fc.o: $(topdir)/builtins.h $(topdir)/command.h $(srcdir)/bashgetopt.h
433 fc.o: $(topdir)/bashhist.h
434 fc.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
435 fc.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
436 fc.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
437 fc.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/shell.h $(topdir)/syntax.h
438 fc.o: $(topdir)/flags.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
439 fc.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h $(BASHINCDIR)/chartypes.h
440 fc.o: ../pathnames.h
441 fg_bg.o: $(topdir)/bashtypes.h $(srcdir)/bashgetopt.h
442 fg_bg.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
443 fg_bg.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
444 fg_bg.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
445 fg_bg.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
446 fg_bg.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
447 fg_bg.o: $(topdir)/jobs.h ../pathnames.h
448 getopts.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
449 getopts.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
450 getopts.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
451 getopts.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
452 getopts.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
453 getopts.o: ../pathnames.h
454 hash.o: $(topdir)/builtins.h $(topdir)/command.h $(topdir)/quit.h
455 hash.o: $(topdir)/findcmd.h $(topdir)/hashlib.h
456 hash.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
457 hash.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
458 hash.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
459 hash.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
460 help.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
461 help.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
462 help.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
463 help.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
464 help.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
465 help.o: ${srcdir}/common.h ../pathnames.h
466 history.o: $(topdir)/bashtypes.h
467 history.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
468 history.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
469 history.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
470 history.o: $(topdir)/subst.h $(topdir)/externs.h 
471 history.o: ${BASHINCDIR}/filecntl.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
472 history.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/bashhist.h $(BASHINCDIR)/maxpath.h
473 history.o: ../pathnames.h
474 inlib.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
475 inlib.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
476 inlib.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
477 inlib.o: $(BASHINCDIR)/maxpath.h $(topdir)/subst.h $(topdir)/externs.h
478 inlib.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h ../pathnames.h
479 jobs.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
480 jobs.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(srcdir)/bashgetopt.h
481 jobs.o: $(BASHINCDIR)/maxpath.h $(topdir)/externs.h $(topdir)/jobs.h
482 jobs.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
483 jobs.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
484 jobs.o: ../pathnames.h
485 kill.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
486 kill.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
487 kill.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
488 kill.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/trap.h $(topdir)/unwind_prot.h
489 kill.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/maxpath.h
490 kill.o: $(topdir)/jobs.h ../pathnames.h
491 let.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
492 let.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
493 let.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
494 let.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
495 let.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
496 let.o: ../pathnames.h
497 printf.o: ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/bashjmp.h
498 printf.o: $(topdir)/command.h $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
499 printf.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
500 printf.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
501 printf.o: ../pathnames.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
502 printf.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/stdc.h $(srcdir)/bashgetopt.h
503 printf.o: $(topdir)/bashtypes.h ${srcdir}/common.h $(BASHINCDIR)/chartypes.h
504 printf.o: ../pathnames.h
505 pushd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
506 pushd.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
507 pushd.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
508 pushd.o: $(topdir)/subst.h $(topdir)/externs.h 
509 pushd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
510 pushd.o: $(BASHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
511 pushd.o: ../pathnames.h
512 read.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
513 read.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
514 read.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
515 read.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
516 read.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
517 read.o: $(BASHINCDIR)/shtty.h
518 read.o: $(topdir)/arrayfunc.h ../pathnames.h
519 return.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
520 return.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
521 return.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
522 return.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
523 return.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
524 return.o: ../pathnames.h
525 set.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
526 set.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
527 set.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
528 set.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
529 set.o: $(BASHINCDIR)/maxpath.h $(topdir)/error.h
530 set.o: $(topdir)/arrayfunc.h ../pathnames.h
531 setattr.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
532 setattr.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
533 setattr.o: $(topdir)/quit.h $(srcdir)/common.h $(srcdir)/bashgetopt.h
534 setattr.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
535 setattr.o: $(topdir)/externs.h 
536 setattr.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
537 setattr.o: $(topdir)/arrayfunc.h ../pathnames.h
538 shift.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
539 shift.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
540 shift.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
541 shift.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
542 shift.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
543 shift.o: ../pathnames.h
544 shopt.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
545 shopt.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h 
546 shopt.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
547 shopt.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
548 shopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
549 shopt.o: $(srcdir)/common.h $(srcdir)/bashgetopt.h ../pathnames.h
550 shopt.o: $(topdir)/bashhist.h
551 source.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
552 source.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/findcmd.h
553 source.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
554 source.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
555 source.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
556 source.o: $(srcdir)/bashgetopt.h $(topdir)/flags.h $(topdir)/trap.h
557 source.o: ../pathnames.h
558 suspend.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
559 suspend.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
560 suspend.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
561 suspend.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
562 suspend.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
563 suspend.o: $(topdir)/jobs.h ../pathnames.h
564 test.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
565 test.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
566 test.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
567 test.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
568 test.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
569 test.o: $(topdir)/test.h ../pathnames.h
570 times.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
571 times.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
572 times.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
573 times.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
574 times.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
575 times.o: $(BASHINCDIR)/posixtime.h ../pathnames.h
576 trap.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
577 trap.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
578 trap.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
579 trap.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
580 trap.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
581 trap.o: $(topdir)/findcmd.h ../pathnames.h
582 type.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
583 type.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
584 type.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
585 type.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
586 type.o: $(topdir)/externs.h $(topdir)/hashcmd.h ../pathnames.h
587 type.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
588 ulimit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
589 ulimit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
590 ulimit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
591 ulimit.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
592 ulimit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
593 ulimit.o: ../pathnames.h
594 umask.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
595 umask.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
596 umask.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
597 umask.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
598 umask.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
599 umask.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
600 wait.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
601 wait.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
602 wait.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
603 wait.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
604 wait.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
605 wait.o: $(topdir)/jobs.h
606 wait.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
607
608 complete.o: ../config.h ../pathnames.h
609 complete.o: ${topdir}/shell.h $(topdir)/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h ${topdir}/sig.h  
610 complete.o: ${topdir}/unwind_prot.h ${topdir}/variables.h
611 complete.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
612 complete.o: ${topdir}/builtins.h
613 complete.o: ${topdir}/pcomplete.h
614 complete.o: ${srcdir}/common.h ${srcdir}/bashgetopt.h
615 mapfile.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
616 mapfile.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
617 mapfile.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
618 mapfile.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
619 mapfile.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/variables.h $(topdir)/conftypes.h
620 mapfile.o: $(topdir)/arrayfunc.h ../pathnames.h
621
622 #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
623
624 # libintl dependencies
625 bind.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
626 break.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
627 caller.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
628 cd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
629 common.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
630 complete.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
631 declare.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
632 enable.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
633 evalfile.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
634 exec.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
635 exit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
636 fc.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
637 fg_bg.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
638 getopt.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
639 hash.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
640 help.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
641 history.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
642 inlib.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
643 jobs.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
644 kill.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
645 let.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
646 mapfile.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
647 mkbuiltins.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
648 printf.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
649 pushd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
650 read.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
651 return.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
652 set.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
653 setattr.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
654 shift.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
655 shopt.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
656 source.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
657 suspend.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
658 type.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
659 ulimit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
660 umask.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h