init version.
[bush.git] / builtins / Makefile.in
blob87ac05f8ea6d91d75b4d7b1528638b8f906d0566
1 # This Makefile for building libbuiltins.a is in -*- text -*- for Emacs.
3 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
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 3 of the License, or
8 # (at your option) any later version.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 PACKAGE = @PACKAGE_NAME@
19 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
20 PACKAGE_NAME = @PACKAGE_NAME@
21 PACKAGE_STRING = @PACKAGE_STRING@
22 PACKAGE_VERSION = @PACKAGE_VERSION@
25 SHELL = @MAKE_SHELL@
26 RANLIB = @RANLIB@
27 CC = @CC@
28 CC_FOR_BUILD = @CC_FOR_BUILD@
29 AR = @AR@
30 ARFLAGS = @ARFLAGS@
31 RM = rm -f
32 CP = cp
34 EXEEXT = @EXEEXT@
36 prefix = @prefix@
38 srcdir = @srcdir@
39 VPATH = @srcdir@
40 topdir = @top_srcdir@
42 datarootdir = @datarootdir@
44 includedir = @includedir@
45 datadir = @datadir@
46 localedir = @localedir@
48 loadablesdir = @loadablesdir@
50 # Support an alternate destination root directory for package building
51 DESTDIR =
53 INSTALL = @INSTALL@
54 INSTALL_DATA = @INSTALL_DATA@
55 BUILD_DIR = @BUILD_DIR@
57 LIBBUILD = ${BUILD_DIR}/lib
59 PROFILE_FLAGS = @PROFILE_FLAGS@
60 CFLAGS = @CFLAGS@
61 CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@
62 CPPFLAGS = @CPPFLAGS@
63 CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
64 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
65 DEFS = @DEFS@
66 LOCAL_DEFS = @LOCAL_DEFS@
68 LIBS = @LIBS@
69 LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
70 LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD)
71 LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
72 LIBS_FOR_BUILD = @LIBS_FOR_BUILD@
73 #LIBS_FOR_BUILD = $(LIBS)
75 BUSHINCDIR = ${topdir}/include
77 RL_INCLUDEDIR = @RL_INCLUDEDIR@
79 INTL_LIBSRC = ${topdir}/lib/intl
80 INTL_BUILDDIR = ${LIBBUILD}/intl
81 INTL_LIBDIR = ${INTL_BUILDDIR}
82 INTL_LIBRARY = ${INTL_BUILDDIR}/libintl.a
83 INTL_INC = @INTL_INC@
84 INTL_DEP = @INTL_DEP@
85 LIBINTL_H = @LIBINTL_H@
87 HELPDIR = @HELPDIR@
88 MKDIRS = ${topdir}/support/mkdirs
90 HELPFILES_TARGET = @HELPFILES_TARGET@
92 INCLUDES = -I. -I.. @RL_INCLUDE@ -I$(topdir) -I$(topdir)/src -I$(BUSHINCDIR) -I$(topdir)/lib -I$(srcdir) ${INTL_INC}
94 BASE_CCFLAGS = ${PROFILE_FLAGS} $(DEFS) $(LOCAL_DEFS) $(SYSTEM_FLAGS) \
95 ${INCLUDES} $(LOCAL_CFLAGS)
97 CCFLAGS = ${ADDON_CFLAGS} $(BASE_CCFLAGS) $(CPPFLAGS) $(CFLAGS)
99 CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
101 GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
102 -Wcast-align -Wstrict-prototypes -Wconversion \
103 -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
105 MKBUILTINS = mkbuiltins$(EXEEXT)
106 DIRECTDEFINE = -D $(srcdir)
107 HELPDIRDEFINE = @HELPDIRDEFINE@
108 HELPSTRINGS = @HELPSTRINGS@
110 # xxx this is bad style
111 RL_LIBSRC = $(topdir)/lib/readline
113 .SUFFIXES:
114 .SUFFIXES: .def .c .o
115 # How to make a .o file from a .def file.
116 .def.o:
117 $(RM) $@
118 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
119 $(CC) -c $(CCFLAGS) $*.c || ( $(RM) $*.c ; exit 1 )
120 $(RM) $*.c
122 # How to make a .c file from a .def file.
123 .def.c:
124 $(RM) $@
125 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
127 # default rule for making a .o file from a .c file
128 .c.o:
129 $(RM) $@
130 $(CC) -c $(CCFLAGS) $<
132 DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
133 $(srcdir)/builtin.def $(srcdir)/caller.def \
134 $(srcdir)/cd.def $(srcdir)/colon.def \
135 $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
136 $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
137 $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
138 $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
139 $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
140 $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
141 $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
142 $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
143 $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
144 $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
145 $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
146 $(srcdir)/printf.def $(srcdir)/complete.def $(srcdir)/mapfile.def
148 STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bushgetopt.c \
149 getopt.h
151 OFILES = builtins.o \
152 alias.o bind.o break.o builtin.o caller.o cd.o colon.o command.o \
153 common.o declare.o echo.o enable.o eval.o evalfile.o \
154 evalstring.o exec.o exit.o fc.o fg_bg.o hash.o help.o history.o \
155 jobs.o kill.o let.o mapfile.o \
156 pushd.o read.o return.o set.o setattr.o shift.o source.o \
157 suspend.o test.o times.o trap.o type.o ulimit.o umask.o \
158 wait.o getopts.o shopt.o printf.o getopt.o bushgetopt.o complete.o
160 CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h tmpbuiltins.c \
161 tmpbuiltins.h
162 CREATED_OBJECTS = tmpbuiltins.o gen-helpfiles.o mkbuiltins.o
164 all: $(MKBUILTINS) libbuiltins.a $(HELPFILES_TARGET)
165 targets: libbuiltins.a $(HELPFILES_TARGET)
167 libbuiltins.a: $(MKBUILTINS) $(OFILES) builtins.o
168 $(RM) $@
169 $(AR) $(ARFLAGS) $@ $(OFILES)
170 -$(RANLIB) $@
172 tmpbuiltins.c: $(MKBUILTINS) $(DEFSRC)
173 ./$(MKBUILTINS) -externfile tmpbuiltins.h -structfile $@ \
174 -noproduction -nofunctions \
175 $(DIRECTDEFINE) $(HELPSTRINGS) $(DEFSRC)
177 tmpbuiltins.h: tmpbuiltins.c
179 gen-helpfiles.o: ../config.h
180 gen-helpfiles.o: gen-helpfiles.c
181 $(RM) $@
182 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
184 gen-helpfiles: tmpbuiltins.o gen-helpfiles.o
185 $(CC_FOR_BUILD) ${CCFLAGS_FOR_BUILD} $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD)
187 builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
188 @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
189 @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
190 ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
191 -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
192 @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
193 mv old-builtext.h builtext.h; \
194 else \
195 $(RM) old-builtext.h; \
197 @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
198 mv old-builtins.c builtins.c; \
199 else \
200 $(RM) old-builtins.c; \
203 helpdoc: gen-helpfiles
204 ./gen-helpfiles ${HELPDIRDEFINE}
206 install-help:
207 @-if test -n "${HELPDIR}" && test -d helpfiles ; then \
208 test -d $(DESTDIR)${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
209 ( for f in helpfiles/*; do \
210 echo installing $$f; \
211 ${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
212 done; ) ; \
215 install: @HELPINSTALL@
217 mkbuiltins.o: ../config.h
218 mkbuiltins.o: mkbuiltins.c
219 $(RM) $@
220 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
222 mkbuiltins$(EXEEXT): mkbuiltins.o
223 $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
225 # rules for deficient makes, like SunOS
226 mkbuiltins.o: mkbuiltins.c
227 builtins.o: builtins.c
228 common.o: common.c
229 bushgetopt.o: bushgetopt.c
230 getopt.o: getopt.c
231 evalstring.o: evalstring.c
232 evalfile.o: evalfile.c
234 tmpbuiltins.o: tmpbuiltins.c
235 gen-helpfiles.o: gen-helpfiles.c
237 ulimit.o: pipesize.h
239 pipesize.h: psize.aux
240 $(SHELL) $(srcdir)/psize.sh > $@
242 # Technically this is wrong; the pipe size should be for the target system,
243 # not the build host.
244 psize.aux: psize.c
245 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(srcdir)/psize.c
247 documentation: builtins.texi
249 builtins.texi: $(MKBUILTINS)
250 ./$(MKBUILTINS) -documentonly $(DEFSRC)
252 clean:
253 $(RM) $(OFILES) $(CREATED_FILES) libbuiltins.a
254 $(RM) $(MKBUILTINS) gen-helpfiles $(CREATED_OBJECTS)
255 -test -d helpfiles && $(RM) -r helpfiles
257 mostlyclean:
258 $(RM) $(OFILES) libbuiltins.a
260 distclean maintainer-clean: clean
261 $(RM) Makefile
263 $(OFILES): $(MKBUILTINS) ../config.h
265 ../version.h: ../config.h ../Makefile Makefile
266 -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
268 # maintainer special - for now
269 po: builtins.c
270 xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
272 ${LIBINTL_H}:
273 @echo making $@ in ${INTL_BUILDDIR}
274 @(cd ${INTL_BUILDDIR} && \
275 $(MAKE) $(MFLAGS) libintl.h) || exit 1
277 # dependencies
279 alias.o: alias.def
280 bind.o: bind.def
281 break.o: break.def
282 builtin.o: builtin.def
283 caller.o: caller.def
284 cd.o: cd.def
285 colon.o: colon.def
286 command.o: command.def
287 declare.o: declare.def
288 echo.o: echo.def
289 enable.o: enable.def
290 eval.o: eval.def
291 exec.o: exec.def
292 exit.o: exit.def
293 fc.o: fc.def
294 fg_bg.o: fg_bg.def
295 hash.o: hash.def
296 help.o: help.def
297 history.o: history.def
298 jobs.o: jobs.def
299 kill.o: kill.def
300 let.o: let.def
301 mapfile.o: mapfile.def
302 printf.o: printf.def
303 pushd.o: pushd.def
304 read.o: read.def
305 return.o: return.def
306 set.o: set.def
307 setattr.o: setattr.def
308 shift.o: shift.def
309 shopt.o: shopt.def
310 source.o: source.def
311 suspend.o: suspend.def
312 test.o: test.def
313 times.o: times.def
314 trap.o: trap.def
315 type.o: type.def
316 ulimit.o: ulimit.def
317 umask.o: umask.def
318 wait.o: wait.def
319 getopts.o: getopts.def
320 reserved.o: reserved.def
321 complete.o: complete.def
323 # C files
324 bushgetopt.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
325 bushgetopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h
326 bushgetopt.o: $(topdir)/src/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
327 bushgetopt.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
328 bushgetopt.o: $(topdir)/src/unwind_prot.h $(topdir)/src/dispose_cmd.h
329 bushgetopt.o: $(topdir)/src/make_cmd.h $(topdir)/src/subst.h $(topdir)/src/sig.h
330 bushgetopt.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(srcdir)/common.h
331 bushgetopt.o: $(BUSHINCDIR)/chartypes.h
332 common.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
333 common.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
334 common.o: $(topdir)/src/sig.h $(topdir)/src/command.h $(topdir)/src/parser.h
335 common.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/stdc.h $(BUSHINCDIR)/memalloc.h
336 common.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input.h
337 common.o: $(topdir)/src/siglist.h $(topdir)/src/bushhist.h $(topdir)/src/quit.h
338 common.o: $(topdir)/src/unwind_prot.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h
339 common.o: $(topdir)/src/builtins.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
340 common.o: $(topdir)/src/subst.h $(topdir)/src/execute_cmd.h $(topdir)/src/error.h
341 common.o: $(topdir)/src/externs.h $(topdir)/src/pathnames.h ./builtext.h
342 common.o: $(BUSHINCDIR)/chartypes.h
343 evalfile.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h ${BUSHINCDIR}/filecntl.h
344 evalfile.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
345 evalfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h
346 evalfile.o: $(topdir)/src/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
347 evalfile.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
348 evalfile.o: $(topdir)/src/unwind_prot.h $(topdir)/src/dispose_cmd.h
349 evalfile.o: $(topdir)/src/make_cmd.h $(topdir)/src/subst.h $(topdir)/src/sig.h
350 evalfile.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(topdir)/src/parser.h
351 evalfile.o: $(topdir)/src/jobs.h $(topdir)/src/builtins.h $(topdir)/src/flags.h
352 evalfile.o: $(topdir)/src/input.h $(topdir)/src/execute_cmd.h
353 evalfile.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
354 evalstring.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
355 evalstring.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
356 evalstring.o: $(topdir)/src/sig.h $(topdir)/src/command.h $(topdir)/src/siglist.h
357 evalstring.o: $(BUSHINCDIR)/memalloc.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input.h
358 evalstring.o: $(topdir)/src/quit.h $(topdir)/src/unwind_prot.h
359 evalstring.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
360 evalstring.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
361 evalstring.o: $(topdir)/src/externs.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
362 evalstring.o: $(topdir)/src/flags.h $(topdir)/src/input.h $(topdir)/src/execute_cmd.h
363 evalstring.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
364 evalstring.o: $(topdir)/src/trap.h $(topdir)/src/redir.h $(topdir)/src/pathnames.h
365 #evalstring.o: $(topdir)/src/y.tab.h
366 getopt.o: ../config.h $(BUSHINCDIR)/memalloc.h
367 getopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(topdir)/src/command.h
368 getopt.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
369 getopt.o: $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/unwind_prot.h
370 getopt.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
371 getopt.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h $(topdir)/src/externs.h
372 getopt.o: $(srcdir)/getopt.h
373 mkbuiltins.o: ../config.h $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
374 mkbuiltins.o: ${BUSHINCDIR}/filecntl.h
375 mkbuiltins.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
377 # def files
378 alias.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
379 alias.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
380 alias.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
381 alias.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(srcdir)/common.h
382 alias.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
383 alias.o: $(topdir)/src/pathnames.h
384 bind.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
385 bind.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
386 bind.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(srcdir)/bushgetopt.h
387 bind.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/bushline.h
388 bind.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
389 break.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
390 break.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
391 break.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
392 break.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
393 break.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
394 break.o: $(topdir)/src/pathnames.h $(topdir)/src/execute_cmd.h
395 builtin.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
396 builtin.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
397 builtin.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
398 builtin.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
399 builtin.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
400 builtin.o: $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h $(topdir)/src/execute_cmd.h
401 caller.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
402 caller.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h
403 caller.o: $(topdir)/src/make_cmd.h $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
404 caller.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
405 caller.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h ./builtext.h
406 caller.o: ${BUSHINCDIR}/chartypes.h $(topdir)/src/bushtypes.h $(topdir)/src/pathnames.h
407 cd.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
408 cd.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h
409 cd.o: $(topdir)/src/make_cmd.h $(topdir)/src/subst.h $(topdir)/src/externs.h
410 cd.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
411 cd.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
412 cd.o: $(topdir)/src/sig.h
413 colon.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
414 colon.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/subst.h $(topdir)/src/externs.h
415 colon.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
416 colon.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
417 colon.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
418 colon.o: $(srcdir)/common.h
419 command.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
420 command.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
421 command.o: $(topdir)/src/quit.h $(srcdir)/bushgetopt.h $(BUSHINCDIR)/maxpath.h
422 command.o: $(topdir)/src/sig.h
423 command.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
424 command.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
425 command.o: $(topdir)/src/pathnames.h
426 declare.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
427 declare.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
428 declare.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
429 declare.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
430 declare.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
431 declare.o: $(topdir)/src/arrayfunc.h $(srcdir)/bushgetopt.h $(topdir)/src/flags.h
432 declare.o: ./builtext.h $(topdir)/src/pathnames.h
433 echo.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
434 echo.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/subst.h $(topdir)/src/externs.h
435 echo.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
436 echo.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
437 echo.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
438 echo.o: $(srcdir)/common.h
439 enable.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
440 enable.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
441 enable.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
442 enable.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
443 enable.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
444 enable.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
445 enable.o: $(topdir)/src/pcomplete.h
446 eval.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
447 eval.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
448 eval.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
449 eval.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
450 eval.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
451 eval.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
452 exec.o: $(topdir)/src/bushtypes.h
453 exec.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
454 exec.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
455 exec.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
456 exec.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/flags.h
457 exec.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
458 exec.o: $(srcdir)/common.h $(topdir)/src/execute_cmd.h $(BUSHINCDIR)/maxpath.h
459 exec.o: $(topdir)/src/findcmd.h $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
460 exit.o: $(topdir)/src/bushtypes.h
461 exit.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
462 exit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
463 exit.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
464 exit.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
465 exit.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
466 exit.o: $(topdir)/src/execute_cmd.h
467 exit.o: $(BUSHINCDIR)/maxpath.h ./builtext.h $(topdir)/src/pathnames.h
468 fc.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
469 fc.o: $(topdir)/src/builtins.h $(topdir)/src/command.h $(srcdir)/bushgetopt.h
470 fc.o: $(topdir)/src/bushhist.h $(topdir)/src/parser.h
471 fc.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
472 fc.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
473 fc.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
474 fc.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/shell.h $(topdir)/src/syntax.h
475 fc.o: $(topdir)/src/flags.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
476 fc.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h $(BUSHINCDIR)/chartypes.h
477 fc.o: $(topdir)/src/pathnames.h
478 fg_bg.o: $(topdir)/src/bushtypes.h $(srcdir)/bushgetopt.h
479 fg_bg.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
480 fg_bg.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
481 fg_bg.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
482 fg_bg.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
483 fg_bg.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
484 fg_bg.o: $(topdir)/src/execute_cmd.h
485 fg_bg.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
486 getopts.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
487 getopts.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
488 getopts.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
489 getopts.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
490 getopts.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
491 getopts.o: $(topdir)/src/execute_cmd.h
492 getopts.o: $(topdir)/src/pathnames.h
493 hash.o: $(topdir)/src/builtins.h $(topdir)/src/command.h $(topdir)/src/quit.h
494 hash.o: $(topdir)/src/findcmd.h $(topdir)/src/hashlib.h $(topdir)/src/sig.h
495 hash.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
496 hash.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
497 hash.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h
498 hash.o: $(topdir)/src/conftypes.h $(topdir)/src/execute_cmd.h
499 hash.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
500 help.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
501 help.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
502 help.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
503 help.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
504 help.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h
505 help.o: $(topdir)/src/conftypes.h $(topdir)/src/execute_cmd.h
506 help.o: ${srcdir}/common.h $(topdir)/src/sig.h $(topdir)/src/pathnames.h
507 history.o: $(topdir)/src/bushtypes.h
508 history.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
509 history.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
510 history.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
511 history.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h $(topdir)/src/parser.h
512 history.o: ${BUSHINCDIR}/filecntl.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h
513 history.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(topdir)/src/bushhist.h $(BUSHINCDIR)/maxpath.h
514 history.o: $(topdir)/src/pathnames.h
515 inlib.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
516 inlib.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
517 inlib.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
518 inlib.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/subst.h $(topdir)/src/externs.h
519 inlib.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/pathnames.h
520 jobs.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
521 jobs.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(srcdir)/bushgetopt.h
522 jobs.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
523 jobs.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
524 jobs.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
525 jobs.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h
526 kill.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
527 kill.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/subst.h $(topdir)/src/externs.h
528 kill.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
529 kill.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/trap.h $(topdir)/src/unwind_prot.h
530 kill.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/maxpath.h
531 kill.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
532 let.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
533 let.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
534 let.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
535 let.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
536 let.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
537 let.o: $(topdir)/src/pathnames.h
538 printf.o: ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/bushjmp.h
539 printf.o: $(topdir)/src/command.h $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
540 printf.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
541 printf.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
542 printf.o: $(topdir)/src/pathnames.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h
543 printf.o: $(topdir)/src/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/stdc.h $(srcdir)/bushgetopt.h
544 printf.o: $(topdir)/src/bushtypes.h ${srcdir}/common.h $(BUSHINCDIR)/chartypes.h
545 printf.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
546 printf.o: $(topdir)/src/pathnames.h
547 pushd.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
548 pushd.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
549 pushd.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
550 pushd.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
551 pushd.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
552 pushd.o: $(BUSHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
553 pushd.o: $(topdir)/src/pathnames.h
554 read.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
555 read.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
556 read.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
557 read.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
558 read.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
559 read.o: $(BUSHINCDIR)/shtty.h $(topdir)/src/sig.h
560 read.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
561 read.o: $(topdir)/src/arrayfunc.h $(topdir)/src/pathnames.h
562 return.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
563 return.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
564 return.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
565 return.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
566 return.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h
567 return.o: $(topdir)/src/conftypes.h $(topdir)/src/execute_cmd.h
568 return.o: $(topdir)/src/pathnames.h
569 set.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
570 set.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/subst.h $(topdir)/src/externs.h
571 set.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
572 set.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
573 set.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/error.h $(topdir)/src/sig.h
574 set.o: $(topdir)/src/arrayfunc.h $(topdir)/src/pathnames.h $(topdir)/src/parser.h
575 setattr.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
576 setattr.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
577 setattr.o: $(topdir)/src/quit.h $(srcdir)/common.h $(srcdir)/bushgetopt.h
578 setattr.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
579 setattr.o: $(topdir)/src/externs.h $(topdir)/src/flags.h $(topdir)/src/sig.h
580 setattr.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h
581 setattr.o: $(topdir)/src/conftypes.h $(topdir)/src/execute_cmd.h
582 setattr.o: $(topdir)/src/arrayfunc.h $(topdir)/src/pathnames.h
583 shift.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
584 shift.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
585 shift.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
586 shift.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
587 shift.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
588 shift.o: $(topdir)/src/pathnames.h
589 shopt.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
590 shopt.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
591 shopt.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
592 shopt.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
593 shopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
594 shopt.o: $(srcdir)/common.h $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h
595 shopt.o: $(topdir)/src/bushhist.h $(topdir)/src/bushline.h $(topdir)/src/sig.h
596 source.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
597 source.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/findcmd.h
598 source.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
599 source.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
600 source.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
601 source.o: $(srcdir)/bushgetopt.h $(topdir)/src/flags.h $(topdir)/src/trap.h
602 source.o: $(topdir)/src/execute_cmd.h
603 source.o: $(topdir)/src/pathnames.h
604 suspend.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
605 suspend.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
606 suspend.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
607 suspend.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
608 suspend.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
609 suspend.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
610 test.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
611 test.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
612 test.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
613 test.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
614 test.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
615 test.o: $(topdir)/src/execute_cmd.h $(topdir)/src/test.h $(topdir)/src/pathnames.h
616 times.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
617 times.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
618 times.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
619 times.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
620 times.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
621 times.o: $(BUSHINCDIR)/posixtime.h $(topdir)/src/pathnames.h
622 trap.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
623 trap.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
624 trap.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
625 trap.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
626 trap.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
627 trap.o: $(topdir)/src/findcmd.h $(topdir)/src/pathnames.h
628 type.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
629 type.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
630 type.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
631 type.o: $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/subst.h
632 type.o: $(topdir)/src/execute_cmd.h $(topdir)/src/parser.h
633 type.o: $(topdir)/src/externs.h $(topdir)/src/hashcmd.h $(topdir)/src/pathnames.h
634 type.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
635 ulimit.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
636 ulimit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
637 ulimit.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
638 ulimit.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
639 ulimit.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
640 ulimit.o: $(topdir)/src/pathnames.h
641 umask.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
642 umask.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
643 umask.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
644 umask.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
645 umask.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
646 umask.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
647 wait.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
648 wait.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
649 wait.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h
650 wait.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
651 wait.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/unwind_prot.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
652 wait.o: $(topdir)/src/jobs.h $(topdir)/src/sig.h $(topdir)/src/execute_cmd.h
653 wait.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
655 complete.o: ../config.h $(topdir)/src/pathnames.h
656 complete.o: ${topdir}/src/shell.h $(topdir)/src/syntax.h ${topdir}/src/bushjmp.h ${BUSHINCDIR}/posixjmp.h ${topdir}/src/sig.h
657 complete.o: ${topdir}/src/unwind_prot.h ${topdir}/src/variables.h
658 complete.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
659 complete.o: ${topdir}/src/bushtypes.h ${topdir}/src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
660 complete.o: ${topdir}/src/builtins.h ${topdir}/src/general.h
661 complete.o: ${topdir}/src/bushtypes.h ${BUSHINCDIR}/chartypes.h ${topdir}/src/xmalloc.h
662 complete.o: ${topdir}/src/pcomplete.h
663 complete.o: ${srcdir}/common.h ${srcdir}/bushgetopt.h
664 mapfile.o: $(topdir)/src/command.h ../config.h $(BUSHINCDIR)/memalloc.h
665 mapfile.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
666 mapfile.o: $(topdir)/src/quit.h $(topdir)/src/dispose_cmd.h $(topdir)/src/make_cmd.h $(topdir)/src/sig.h
667 mapfile.o: $(topdir)/src/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
668 mapfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/variables.h $(topdir)/src/conftypes.h
669 mapfile.o: $(topdir)/src/arrayfunc.h $(topdir)/src/pathnames.h
671 #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
673 # libintl dependencies
674 bind.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
675 break.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
676 caller.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
677 cd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
678 common.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
679 complete.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
680 declare.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
681 enable.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
682 evalfile.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
683 exec.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
684 exit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
685 fc.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
686 fg_bg.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
687 getopt.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
688 hash.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
689 help.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
690 history.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
691 inlib.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
692 jobs.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
693 kill.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
694 let.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
695 mapfile.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
696 mkbuiltins.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
697 printf.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
698 pushd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
699 read.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
700 return.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
701 set.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
702 setattr.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
703 shift.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
704 shopt.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
705 source.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
706 suspend.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
707 type.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
708 ulimit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
709 umask.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h