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