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