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