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