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