837b53ee7e9798c57813b53511d19faa8a2c2bd6
[platform/upstream/bash.git] / builtins / Makefile.in
1 # This Makefile for building libbuiltins.a is in -*- text -*- for Emacs.
2 #
3 # Copyright (C) 1996 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 #
20 SHELL = @MAKE_SHELL@
21 RANLIB = @RANLIB@
22 CC = @CC@
23 CC_FOR_BUILD = @CC_FOR_BUILD@
24 AR = @AR@
25 ARFLAGS = @ARFLAGS@
26 RM = rm -f
27 CP = cp
28
29 EXEEXT = @EXEEXT@
30
31 srcdir = @srcdir@
32 VPATH = .:@srcdir@
33 topdir = @top_srcdir@
34 includedir = @includedir@
35 BUILD_DIR = @BUILD_DIR@
36
37 PROFILE_FLAGS = @PROFILE_FLAGS@
38 CFLAGS = @CFLAGS@
39 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
40 CPPFLAGS = @CPPFLAGS@
41 DEFS = @DEFS@
42 LOCAL_DEFS = @LOCAL_DEFS@
43 LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
44 LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
45 LIBS = @LIBS@
46
47 BASHINCDIR = ${topdir}/include
48
49 RL_INCLUDEDIR = @RL_INCLUDEDIR@
50
51 INCLUDES = -I. -I.. @RL_INCLUDE@ -I$(topdir) -I$(BASHINCDIR) -I$(topdir)/lib -I$(srcdir)
52
53 CCFLAGS_FOR_BUILD = ${PROFILE_FLAGS} $(DEFS) $(LOCAL_DEFS) $(SYSTEM_FLAGS) \
54         $(CPPFLAGS) ${INCLUDES} $(LOCAL_CFLAGS)
55
56 CCFLAGS = $(CCFLAGS_FOR_BUILD) $(CFLAGS)
57
58 GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
59                  -Wcast-align -Wstrict-prototypes -Wconversion \
60                  -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
61
62 MKBUILTINS = mkbuiltins$(EXEEXT)
63 DIRECTDEFINE = -D $(srcdir)
64
65 # xxx this is bad style
66 RL_LIBSRC = $(topdir)/lib/readline
67
68 .SUFFIXES:
69 .SUFFIXES: .def .c .o
70 # How to make a .o file from a .def file.
71 .def.o:
72         $(RM) $@
73         ./$(MKBUILTINS) $(DIRECTDEFINE) $<
74         $(CC) -c $(CCFLAGS) $*.c || ( $(RM) $*.c ; exit 1 )
75         $(RM) $*.c
76
77 # How to make a .c file from a .def file.
78 .def.c:
79         $(RM) $@
80         ./$(MKBUILTINS) $(DIRECTDEFINE) $<
81
82 # default rule for making a .o file from a .c file
83 .c.o:
84         $(RM) $@
85         $(CC) -c $(CCFLAGS) $<
86
87 DEFSRC =  $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
88           $(srcdir)/builtin.def $(srcdir)/cd.def $(srcdir)/colon.def \
89           $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
90           $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
91           $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
92           $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
93           $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
94           $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
95           $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
96           $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
97           $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
98           $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
99           $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
100           $(srcdir)/printf.def $(srcdir)/complete.def
101
102 STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bashgetopt.c \
103                 getopt.h 
104
105 OFILES = builtins.o \
106         alias.o bind.o break.o builtin.o cd.o colon.o command.o \
107         common.o declare.o echo.o enable.o eval.o evalfile.o \
108         evalstring.o exec.o \
109         exit.o fc.o fg_bg.o hash.o help.o history.o jobs.o kill.o let.o \
110         pushd.o read.o return.o set.o setattr.o shift.o source.o \
111         suspend.o test.o times.o trap.o type.o ulimit.o umask.o \
112         wait.o getopts.o shopt.o printf.o getopt.o bashgetopt.o complete.o
113
114 CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h
115
116 all: $(MKBUILTINS) libbuiltins.a
117
118 libbuiltins.a: $(MKBUILTINS) $(OFILES) builtins.o
119         $(RM) $@
120         $(AR) $(ARFLAGS) $@ $(OFILES)
121         -$(RANLIB) $@
122
123 builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
124         @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
125         @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
126         ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
127             -noproduction $(DIRECTDEFINE) $(DEFSRC)
128         @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
129                 mv old-builtext.h builtext.h; \
130          else \
131                 $(RM) old-builtext.h; \
132          fi
133         @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
134                 mv old-builtins.c builtins.c; \
135          else \
136                 $(RM) old-builtins.c; \
137          fi
138
139 mkbuiltins.o: ../config.h
140 mkbuiltins.o: mkbuiltins.c
141         $(RM) $@
142         $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
143
144 mkbuiltins$(EXEEXT): mkbuiltins.o
145         $(CC_FOR_BUILD) $(PROFILE_FLAGS) $(LDFLAGS) -o $(MKBUILTINS) mkbuiltins.o $(LIBS)
146
147 # rules for deficient makes, like SunOS
148 mkbuiltins.o: mkbuiltins.c
149 builtins.o: builtins.c
150 common.o: common.c
151 bashgetopt.o: bashgetopt.c
152 getopt.o: getopt.c
153 evalstring.o: evalstring.c          
154 evalfile.o: evalfile.c  
155
156 ulimit.o: pipesize.h
157
158 pipesize.h:     psize.aux
159         $(SHELL) $(srcdir)/psize.sh > $@
160
161 psize.aux:      psize.c
162         $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -o $@ $(srcdir)/psize.c
163
164 documentation: builtins.texi
165
166 $(OFILES):      $(MKBUILTINS) ../config.h
167
168 builtins.texi: $(MKBUILTINS)
169         ./$(MKBUILTINS) -documentonly $(DEFSRC)
170
171 clean:
172         $(RM) $(OFILES) $(CREATED_FILES) $(MKBUILTINS) mkbuiltins.o libbuiltins.a
173
174 mostlyclean: 
175         $(RM) $(OFILES) libbuiltins.a
176
177 distclean maintainer-clean: clean
178         $(RM) Makefile
179
180 alias.o: alias.def
181 bind.o: bind.def
182 break.o: break.def
183 builtin.o: builtin.def
184 cd.o: cd.def
185 colon.o: colon.def
186 command.o: command.def
187 declare.o: declare.def
188 echo.o: echo.def
189 enable.o: enable.def
190 eval.o: eval.def
191 exec.o: exec.def
192 exit.o: exit.def
193 fc.o: fc.def
194 fg_bg.o: fg_bg.def
195 hash.o: hash.def
196 help.o: help.def
197 history.o: history.def
198 jobs.o: jobs.def
199 kill.o: kill.def
200 let.o: let.def
201 printf.o: printf.def
202 pushd.o: pushd.def
203 read.o: read.def
204 return.o: return.def
205 set.o: set.def
206 setattr.o: setattr.def
207 shift.o: shift.def
208 shopt.o: shopt.def
209 source.o: source.def
210 suspend.o: suspend.def
211 test.o: test.def
212 times.o: times.def
213 trap.o: trap.def
214 type.o: type.def
215 ulimit.o: ulimit.def
216 umask.o: umask.def
217 wait.o: wait.def
218 getopts.o: getopts.def
219 reserved.o: reserved.def
220 complete.o: complete.def
221
222 # C files
223 bashgetopt.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
224 bashgetopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h
225 bashgetopt.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
226 bashgetopt.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
227 bashgetopt.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
228 bashgetopt.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
229 bashgetopt.o: $(topdir)/pathnames.h $(topdir)/externs.h $(srcdir)/common.h
230 bashgetopt.o: $(BASHINCDIR)/chartypes.h
231 common.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
232 common.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
233 common.o: $(topdir)/sig.h $(topdir)/command.h
234 common.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/stdc.h $(BASHINCDIR)/memalloc.h
235 common.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
236 common.o: $(topdir)/siglist.h $(topdir)/bashhist.h $(topdir)/quit.h
237 common.o: $(topdir)/unwind_prot.h $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h
238 common.o: $(topdir)/builtins.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
239 common.o: $(topdir)/subst.h $(topdir)/execute_cmd.h $(topdir)/error.h
240 common.o: $(topdir)/externs.h $(topdir)/pathnames.h ./builtext.h
241 common.o: $(BASHINCDIR)/chartypes.h
242 evalfile.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h ${BASHINCDIR}/filecntl.h
243 evalfile.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
244 evalfile.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h
245 evalfile.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
246 evalfile.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
247 evalfile.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
248 evalfile.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
249 evalfile.o: $(topdir)/pathnames.h $(topdir)/externs.h
250 evalfile.o: $(topdir)/jobs.h $(topdir)/builtins.h $(topdir)/flags.h
251 evalfile.o: $(topdir)/input.h $(topdir)/execute_cmd.h
252 evalfile.o: $(topdir)/bashhist.h $(srcdir)/common.h
253 evalstring.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
254 evalstring.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
255 evalstring.o: $(topdir)/sig.h $(topdir)/command.h $(topdir)/siglist.h
256 evalstring.o: $(BASHINCDIR)/memalloc.h $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
257 evalstring.o: $(topdir)/quit.h $(topdir)/unwind_prot.h
258 evalstring.o: $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h $(topdir)/builtins.h
259 evalstring.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
260 evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
261 evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
262 evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
263 evalstring.o: $(topdir)/trap.h $(topdir)/redir.h
264 getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
265 getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
266 getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
267 getopt.o: $(topdir)/quit.h $(BASHINCDIR)/maxpath.h $(topdir)/unwind_prot.h
268 getopt.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
269 getopt.o: $(topdir)/sig.h $(topdir)/pathnames.h $(topdir)/externs.h
270 getopt.o: $(srcdir)/getopt.h
271 mkbuiltins.o: ../config.h $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
272 mkbuiltins.o: ${BASHINCDIR}/filecntl.h
273 mkbuiltins.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
274
275 # def files
276 alias.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
277 alias.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
278 alias.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
279 alias.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/common.h
280 alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
281 bind.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
282 bind.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
283 bind.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/bashgetopt.h
284 bind.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h $(topdir)/bashline.h
285 bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
286 break.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h 
287 break.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
288 break.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
289 break.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
290 break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
291 builtin.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
292 builtin.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
293 builtin.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
294 builtin.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
295 builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
296 cd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
297 cd.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
298 cd.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
299 cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
300 cd.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
301 command.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
302 command.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
303 command.o: $(topdir)/quit.h $(srcdir)/bashgetopt.h $(BASHINCDIR)/maxpath.h
304 command.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
305 command.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
306 declare.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
307 declare.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
308 declare.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
309 declare.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
310 declare.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
311 declare.o: $(topdir)/arrayfunc.h
312 echo.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
313 echo.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
314 echo.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
315 echo.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
316 echo.o: $(BASHINCDIR)/maxpath.h
317 enable.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
318 enable.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
319 enable.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
320 enable.o: $(topdir)/subst.h $(topdir)/externs.h
321 enable.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
322 enable.o: $(BASHINCDIR)/maxpath.h
323 enable.o: $(topdir)/pcomplete.h
324 eval.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
325 eval.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
326 eval.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
327 eval.o: $(topdir)/subst.h $(topdir)/externs.h
328 eval.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
329 eval.o: $(BASHINCDIR)/maxpath.h
330 exec.o: $(topdir)/bashtypes.h
331 exec.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
332 exec.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
333 exec.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
334 exec.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/flags.h
335 exec.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
336 exec.o: $(srcdir)/common.h $(topdir)/execute_cmd.h $(BASHINCDIR)/maxpath.h
337 exec.o: $(topdir)/findcmd.h
338 exit.o: $(topdir)/bashtypes.h
339 exit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
340 exit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
341 exit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
342 exit.o: $(topdir)/subst.h $(topdir)/externs.h
343 exit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
344 exit.o: $(BASHINCDIR)/maxpath.h ./builtext.h
345 fc.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
346 fc.o: $(topdir)/builtins.h $(topdir)/command.h $(srcdir)/bashgetopt.h
347 fc.o: $(topdir)/bashhist.h
348 fc.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
349 fc.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
350 fc.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
351 fc.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/shell.h $(topdir)/syntax.h
352 fc.o: $(topdir)/flags.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
353 fc.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h $(BASHINCDIR)/chartypes.h
354 fg_bg.o: $(topdir)/bashtypes.h
355 fg_bg.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
356 fg_bg.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
357 fg_bg.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
358 fg_bg.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
359 fg_bg.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
360 getopts.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
361 getopts.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
362 getopts.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
363 getopts.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
364 getopts.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
365 hash.o: $(topdir)/builtins.h $(topdir)/command.h $(topdir)/quit.h
366 hash.o: $(topdir)/findcmd.h $(topdir)/hashlib.h
367 hash.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
368 hash.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
369 hash.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
370 hash.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
371 help.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
372 help.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
373 help.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
374 help.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
375 help.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
376 help.o: ${srcdir}/common.h ../version.h
377 history.o: $(topdir)/bashtypes.h
378 history.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
379 history.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
380 history.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
381 history.o: $(topdir)/subst.h $(topdir)/externs.h
382 history.o: ${BASHINCDIR}/filecntl.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
383 history.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/bashhist.h $(BASHINCDIR)/maxpath.h
384 inlib.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
385 inlib.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
386 inlib.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
387 inlib.o: $(BASHINCDIR)/maxpath.h $(topdir)/subst.h $(topdir)/externs.h
388 inlib.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
389 jobs.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
390 jobs.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(srcdir)/bashgetopt.h
391 jobs.o: $(BASHINCDIR)/maxpath.h $(topdir)/externs.h
392 jobs.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
393 jobs.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
394 kill.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
395 kill.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
396 kill.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
397 kill.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/trap.h $(topdir)/unwind_prot.h
398 kill.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/maxpath.h
399 let.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
400 let.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
401 let.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
402 let.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
403 let.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
404 printf.o: ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/bashjmp.h
405 printf.o: $(topdir)/command.h $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
406 printf.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
407 printf.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
408 printf.o: $(topdir)/pathnames.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
409 printf.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/stdc.h $(srcdir)/bashgetopt.h
410 printf.o: $(topdir)/bashtypes.h ${srcdir}/common.h $(BASHINCDIR)/chartypes.h
411 pushd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
412 pushd.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
413 pushd.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
414 pushd.o: $(topdir)/subst.h $(topdir)/externs.h
415 pushd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
416 pushd.o: $(BASHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
417 read.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
418 read.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
419 read.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
420 read.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
421 read.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
422 read.o: $(BASHINCDIR)/shtty.h
423 read.o: $(topdir)/arrayfunc.h
424 return.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
425 return.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
426 return.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
427 return.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
428 return.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
429 set.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
430 set.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
431 set.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
432 set.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
433 set.o: $(BASHINCDIR)/maxpath.h $(topdir)/error.h
434 set.o: $(topdir)/arrayfunc.h
435 setattr.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
436 setattr.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
437 setattr.o: $(topdir)/quit.h $(srcdir)/common.h $(srcdir)/bashgetopt.h
438 setattr.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
439 setattr.o: $(topdir)/externs.h
440 setattr.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
441 setattr.o: $(topdir)/arrayfunc.h
442 shift.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
443 shift.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
444 shift.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
445 shift.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
446 shift.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
447 source.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
448 source.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/findcmd.h
449 source.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
450 source.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
451 source.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
452 suspend.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
453 suspend.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
454 suspend.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
455 suspend.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
456 suspend.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
457 test.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
458 test.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
459 test.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
460 test.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
461 test.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
462 test.o: $(topdir)/test.h
463 times.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
464 times.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
465 times.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
466 times.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
467 times.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
468 times.o: $(BASHINCDIR)/posixtime.h
469 trap.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
470 trap.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
471 trap.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
472 trap.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
473 trap.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
474 trap.o: $(topdir)/findcmd.h
475 type.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
476 type.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
477 type.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
478 type.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
479 type.o: $(topdir)/externs.h $(topdir)/hashcmd.h
480 type.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h 
481 ulimit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
482 ulimit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
483 ulimit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
484 ulimit.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
485 ulimit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
486 umask.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
487 umask.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
488 umask.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
489 umask.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
490 umask.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
491 umask.o: $(BASHINCDIR)/chartypes.h
492 wait.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
493 wait.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
494 wait.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
495 wait.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
496 wait.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
497 wait.o: $(BASHINCDIR)/chartypes.h
498 shopt.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
499 shopt.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h 
500 shopt.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
501 shopt.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
502 shopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
503 shopt.o: $(srcdir)/common.h $(srcdir)/bashgetopt.h
504
505 complete.o: ../config.h
506 complete.o: ${topdir}/shell.h $(topdir)/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h ${topdir}/sig.h  
507 complete.o: ${topdir}/unwind_prot.h ${topdir}/variables.h
508 complete.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
509 complete.o: ${topdir}/builtins.h
510 complete.o: ${topdir}/pcomplete.h
511 complete.o: ${srcdir}/common.h ${srcdir}/bashgetopt.h
512
513 #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h