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