improve of cmpl.
[bush.git] / builtins / Makefile.in
blob1ffd3f53063572e94da5458d2818a7cd88989820
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 .obj/builtins/%.o: %.def
117 mkdir -p .obj/builtins/`dirname $*`
118 # $(RM) $@
119 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
120 ls -l $*.c
121 $(CC) -c $(CCFLAGS) $*.c -o $@ || ( $(RM) $*.c ; exit 1 )
122 $(RM) $*.c
124 # How to make a .c file from a .def file.
125 %.c: %.def
126 # $(RM) $@
127 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
129 # default rule for making a .o file from a .c file
130 .obj/builtins/%.o: %.c
131 mkdir -p .obj/builtins/`dirname $*`
132 $(RM) $@
133 $(CC) -c $(CCFLAGS) $< -o $@
135 DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
136 $(srcdir)/builtin.def $(srcdir)/caller.def \
137 $(srcdir)/cd.def $(srcdir)/colon.def \
138 $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
139 $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
140 $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
141 $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
142 $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
143 $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
144 $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
145 $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
146 $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
147 $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
148 $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
149 $(srcdir)/printf.def $(srcdir)/complete.def $(srcdir)/mapfile.def
151 STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bushgetopt.c \
152 getopt.h
154 OFILES = .obj/builtins/builtins.o \
155 .obj/builtins/alias.o \
156 .obj/builtins/bind.o \
157 .obj/builtins/break.o \
158 .obj/builtins/builtin.o \
159 .obj/builtins/caller.o \
160 .obj/builtins/cd.o \
161 .obj/builtins/colon.o \
162 .obj/builtins/command.o \
163 .obj/builtins/common.o \
164 .obj/builtins/declare.o \
165 .obj/builtins/echo.o \
166 .obj/builtins/enable.o \
167 .obj/builtins/eval.o \
168 .obj/builtins/evalfile.o \
169 .obj/builtins/evalstring.o \
170 .obj/builtins/exec.o \
171 .obj/builtins/exit.o \
172 .obj/builtins/fc.o \
173 .obj/builtins/fg_bg.o \
174 .obj/builtins/hash.o \
175 .obj/builtins/help.o \
176 .obj/builtins/history.o \
177 .obj/builtins/jobs.o \
178 .obj/builtins/kill.o \
179 .obj/builtins/let.o \
180 .obj/builtins/mapfile.o \
181 .obj/builtins/pushd.o \
182 .obj/builtins/read.o \
183 .obj/builtins/return.o \
184 .obj/builtins/set.o \
185 .obj/builtins/setattr.o \
186 .obj/builtins/shift.o \
187 .obj/builtins/source.o \
188 .obj/builtins/suspend.o \
189 .obj/builtins/test.o \
190 .obj/builtins/times.o \
191 .obj/builtins/trap.o \
192 .obj/builtins/type.o \
193 .obj/builtins/ulimit.o \
194 .obj/builtins/umask.o \
195 .obj/builtins/wait.o \
196 .obj/builtins/getopts.o \
197 .obj/builtins/shopt.o \
198 .obj/builtins/printf.o \
199 .obj/builtins/getopt.o \
200 .obj/builtins/bushgetopt.o \
201 .obj/builtins/complete.o
203 CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h tmpbuiltins.c \
204 tmpbuiltins.h
205 CREATED_OBJECTS = tmpbuiltins.o gen-helpfiles.o mkbuiltins.o
207 all: $(MKBUILTINS) libbuiltins.a $(HELPFILES_TARGET)
208 targets: libbuiltins.a $(HELPFILES_TARGET)
210 libbuiltins.a: $(MKBUILTINS) $(OFILES) .obj/builtins/builtins.o
211 $(RM) $@
212 $(AR) $(ARFLAGS) $@ $(OFILES)
213 -$(RANLIB) $@
215 tmpbuiltins.c: $(MKBUILTINS) $(DEFSRC)
216 ./$(MKBUILTINS) -externfile tmpbuiltins.h -structfile $@ \
217 -noproduction -nofunctions \
218 $(DIRECTDEFINE) $(HELPSTRINGS) $(DEFSRC)
220 tmpbuiltins.h: tmpbuiltins.c
222 gen-helpfiles.o: ../config.h
223 gen-helpfiles.o: gen-helpfiles.c
224 $(RM) $@
225 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
227 gen-helpfiles: tmpbuiltins.o gen-helpfiles.o
228 $(CC_FOR_BUILD) ${CCFLAGS_FOR_BUILD} $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD)
230 builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
231 @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
232 @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
233 ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
234 -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
235 @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
236 mv old-builtext.h builtext.h; \
237 else \
238 $(RM) old-builtext.h; \
240 @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
241 mv old-builtins.c builtins.c; \
242 else \
243 $(RM) old-builtins.c; \
246 helpdoc: gen-helpfiles
247 ./gen-helpfiles ${HELPDIRDEFINE}
249 install-help:
250 @-if test -n "${HELPDIR}" && test -d helpfiles ; then \
251 test -d $(DESTDIR)${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
252 ( for f in helpfiles/*; do \
253 echo installing $$f; \
254 ${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
255 done; ) ; \
258 install: @HELPINSTALL@
260 mkbuiltins.o: ../config.h
261 mkbuiltins.o: mkbuiltins.c
262 $(RM) $@
263 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
265 mkbuiltins$(EXEEXT): mkbuiltins.o
266 $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
268 # rules for deficient makes, like SunOS
269 mkbuiltins.o: mkbuiltins.c
270 builtins.o: builtins.c
271 common.o: common.c
272 bushgetopt.o: bushgetopt.c
273 getopt.o: getopt.c
274 evalstring.o: evalstring.c
275 evalfile.o: evalfile.c
277 tmpbuiltins.o: tmpbuiltins.c
278 gen-helpfiles.o: gen-helpfiles.c
280 ulimit.o: pipesize.h
282 pipesize.h: psize.aux
283 $(SHELL) $(srcdir)/psize.sh > $@
285 # Technically this is wrong; the pipe size should be for the target system,
286 # not the build host.
287 psize.aux: psize.c
288 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(srcdir)/psize.c
290 documentation: builtins.texi
292 builtins.texi: $(MKBUILTINS)
293 ./$(MKBUILTINS) -documentonly $(DEFSRC)
295 clean:
296 $(RM) $(OFILES) $(CREATED_FILES) libbuiltins.a
297 $(RM) $(MKBUILTINS) gen-helpfiles $(CREATED_OBJECTS)
298 -test -d helpfiles && $(RM) -r helpfiles
300 mostlyclean:
301 $(RM) $(OFILES) libbuiltins.a
303 distclean maintainer-clean: clean
304 $(RM) Makefile
306 $(OFILES): $(MKBUILTINS) ../config.h
308 ../version.h: ../config.h ../Makefile Makefile
309 -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
311 # maintainer special - for now
312 po: builtins.c
313 xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
315 ${LIBINTL_H}:
316 @echo making $@ in ${INTL_BUILDDIR}
317 @(cd ${INTL_BUILDDIR} && \
318 $(MAKE) $(MFLAGS) libintl.h) || exit 1
320 # dependencies
322 .obj/builtins/alias.o: alias.def
323 .obj/builtins/bind.o: bind.def
324 .obj/builtins/break.o: break.def
325 .obj/builtins/builtin.o: builtin.def
326 .obj/builtins/caller.o: caller.def
327 .obj/builtins/cd.o: cd.def
328 .obj/builtins/colon.o: colon.def
329 .obj/builtins/command.o: command.def
330 .obj/builtins/declare.o: declare.def
331 .obj/builtins/echo.o: echo.def
332 .obj/builtins/enable.o: enable.def
333 .obj/builtins/eval.o: eval.def
334 .obj/builtins/exec.o: exec.def
335 .obj/builtins/exit.o: exit.def
336 .obj/builtins/fc.o: fc.def
337 .obj/builtins/fg_bg.o: fg_bg.def
338 .obj/builtins/hash.o: hash.def
339 .obj/builtins/help.o: help.def
340 .obj/builtins/history.o: history.def
341 .obj/builtins/jobs.o: jobs.def
342 .obj/builtins/kill.o: kill.def
343 .obj/builtins/let.o: let.def
344 .obj/builtins/mapfile.o: mapfile.def
345 .obj/builtins/printf.o: printf.def
346 .obj/builtins/pushd.o: pushd.def
347 .obj/builtins/read.o: read.def
348 .obj/builtins/return.o: return.def
349 .obj/builtins/set.o: set.def
350 .obj/builtins/setattr.o: setattr.def
351 .obj/builtins/shift.o: shift.def
352 .obj/builtins/shopt.o: shopt.def
353 .obj/builtins/source.o: source.def
354 .obj/builtins/suspend.o: suspend.def
355 .obj/builtins/test.o: test.def
356 .obj/builtins/times.o: times.def
357 .obj/builtins/trap.o: trap.def
358 .obj/builtins/type.o: type.def
359 .obj/builtins/ulimit.o: ulimit.def
360 .obj/builtins/umask.o: umask.def
361 .obj/builtins/wait.o: wait.def
362 .obj/builtins/getopts.o: getopts.def
363 .obj/builtins/reserved.o: reserved.def
364 .obj/builtins/complete.o: complete.def
366 # C files
367 bushgetopt.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
368 bushgetopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h
369 bushgetopt.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
370 bushgetopt.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
371 bushgetopt.o: $(topdir)/src/runner/unwind_prot.h $(topdir)/src/lxrgmr/dispose_cmd.h
372 bushgetopt.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/sig.h
373 bushgetopt.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(srcdir)/common.h
374 bushgetopt.o: $(BUSHINCDIR)/chartypes.h
375 common.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
376 common.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
377 common.o: $(topdir)/src/sig.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/lxrgmr/parser.h
378 common.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/stdc.h $(BUSHINCDIR)/memalloc.h
379 common.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input/input.h
380 common.o: $(topdir)/src/siglist.h $(topdir)/src/bushhist.h $(topdir)/src/quit.h
381 common.o: $(topdir)/src/runner/unwind_prot.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h
382 common.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
383 common.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/runner/execute_cmd.h $(topdir)/src/error.h
384 common.o: $(topdir)/src/externs.h $(topdir)/src/pathnames.h ./builtext.h
385 common.o: $(BUSHINCDIR)/chartypes.h
386 evalfile.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h ${BUSHINCDIR}/filecntl.h
387 evalfile.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
388 evalfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h
389 evalfile.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
390 evalfile.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
391 evalfile.o: $(topdir)/src/runner/unwind_prot.h $(topdir)/src/lxrgmr/dispose_cmd.h
392 evalfile.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/sig.h
393 evalfile.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(topdir)/src/lxrgmr/parser.h
394 evalfile.o: $(topdir)/src/jobs.h $(topdir)/src/builtins.h $(topdir)/src/flags.h
395 evalfile.o: $(topdir)/src/input/input.h $(topdir)/src/runner/execute_cmd.h
396 evalfile.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
397 evalstring.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
398 evalstring.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
399 evalstring.o: $(topdir)/src/sig.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/siglist.h
400 evalstring.o: $(BUSHINCDIR)/memalloc.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input/input.h
401 evalstring.o: $(topdir)/src/quit.h $(topdir)/src/runner/unwind_prot.h
402 evalstring.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
403 evalstring.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
404 evalstring.o: $(topdir)/src/externs.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
405 evalstring.o: $(topdir)/src/flags.h $(topdir)/src/input/input.h $(topdir)/src/runner/execute_cmd.h
406 evalstring.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
407 evalstring.o: $(topdir)/src/trap.h $(topdir)/src/redir.h $(topdir)/src/pathnames.h
408 #evalstring.o: $(topdir)/src/lxrgmr/y.tab.h
409 getopt.o: ../config.h $(BUSHINCDIR)/memalloc.h
410 getopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(topdir)/src/lxrgmr/command.h
411 getopt.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
412 getopt.o: $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/runner/unwind_prot.h
413 getopt.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
414 getopt.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h $(topdir)/src/externs.h
415 getopt.o: $(srcdir)/getopt.h
416 mkbuiltins.o: ../config.h $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
417 mkbuiltins.o: ${BUSHINCDIR}/filecntl.h
418 mkbuiltins.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
420 # def files
421 alias.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
422 alias.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
423 alias.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
424 alias.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(srcdir)/common.h
425 alias.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
426 alias.o: $(topdir)/src/pathnames.h
427 bind.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
428 bind.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
429 bind.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(srcdir)/bushgetopt.h
430 bind.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/input/bushline.h
431 bind.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
432 break.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
433 break.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
434 break.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
435 break.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
436 break.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
437 break.o: $(topdir)/src/pathnames.h $(topdir)/src/runner/execute_cmd.h
438 builtin.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
439 builtin.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
440 builtin.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
441 builtin.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
442 builtin.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
443 builtin.o: $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h $(topdir)/src/runner/execute_cmd.h
444 caller.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
445 caller.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h
446 caller.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
447 caller.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
448 caller.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h ./builtext.h
449 caller.o: ${BUSHINCDIR}/chartypes.h $(topdir)/src/bushtypes.h $(topdir)/src/pathnames.h
450 cd.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
451 cd.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h
452 cd.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
453 cd.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
454 cd.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
455 cd.o: $(topdir)/src/sig.h
456 colon.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
457 colon.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
458 colon.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
459 colon.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
460 colon.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
461 colon.o: $(srcdir)/common.h
462 command.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
463 command.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
464 command.o: $(topdir)/src/quit.h $(srcdir)/bushgetopt.h $(BUSHINCDIR)/maxpath.h
465 command.o: $(topdir)/src/sig.h
466 command.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
467 command.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
468 command.o: $(topdir)/src/pathnames.h
469 declare.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
470 declare.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
471 declare.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
472 declare.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
473 declare.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
474 declare.o: $(topdir)/src/var/arrayfunc.h $(srcdir)/bushgetopt.h $(topdir)/src/flags.h
475 declare.o: ./builtext.h $(topdir)/src/pathnames.h
476 echo.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
477 echo.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
478 echo.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
479 echo.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
480 echo.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
481 echo.o: $(srcdir)/common.h
482 enable.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
483 enable.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
484 enable.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
485 enable.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
486 enable.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
487 enable.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
488 enable.o: $(topdir)/src/pcomplete.h
489 eval.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
490 eval.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
491 eval.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
492 eval.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
493 eval.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
494 eval.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
495 exec.o: $(topdir)/src/bushtypes.h
496 exec.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
497 exec.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
498 exec.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
499 exec.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/flags.h
500 exec.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
501 exec.o: $(srcdir)/common.h $(topdir)/src/runner/execute_cmd.h $(BUSHINCDIR)/maxpath.h
502 exec.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
503 exit.o: $(topdir)/src/bushtypes.h
504 exit.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
505 exit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
506 exit.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
507 exit.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
508 exit.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
509 exit.o: $(topdir)/src/runner/execute_cmd.h
510 exit.o: $(BUSHINCDIR)/maxpath.h ./builtext.h $(topdir)/src/pathnames.h
511 fc.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
512 fc.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/command.h $(srcdir)/bushgetopt.h
513 fc.o: $(topdir)/src/bushhist.h $(topdir)/src/lxrgmr/parser.h
514 fc.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
515 fc.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
516 fc.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
517 fc.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/shell.h $(topdir)/src/syntax.h
518 fc.o: $(topdir)/src/flags.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
519 fc.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h $(BUSHINCDIR)/chartypes.h
520 fc.o: $(topdir)/src/pathnames.h
521 fg_bg.o: $(topdir)/src/bushtypes.h $(srcdir)/bushgetopt.h
522 fg_bg.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
523 fg_bg.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
524 fg_bg.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
525 fg_bg.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
526 fg_bg.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
527 fg_bg.o: $(topdir)/src/runner/execute_cmd.h
528 fg_bg.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
529 getopts.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
530 getopts.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
531 getopts.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
532 getopts.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
533 getopts.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
534 getopts.o: $(topdir)/src/runner/execute_cmd.h
535 getopts.o: $(topdir)/src/pathnames.h
536 hash.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/quit.h
537 hash.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/hashlib.h $(topdir)/src/sig.h
538 hash.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
539 hash.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
540 hash.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
541 hash.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
542 hash.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
543 help.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
544 help.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
545 help.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
546 help.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
547 help.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
548 help.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
549 help.o: ${srcdir}/common.h $(topdir)/src/sig.h $(topdir)/src/pathnames.h
550 history.o: $(topdir)/src/bushtypes.h
551 history.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
552 history.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
553 history.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
554 history.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h $(topdir)/src/lxrgmr/parser.h
555 history.o: ${BUSHINCDIR}/filecntl.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h
556 history.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/bushhist.h $(BUSHINCDIR)/maxpath.h
557 history.o: $(topdir)/src/pathnames.h
558 inlib.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
559 inlib.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
560 inlib.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
561 inlib.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
562 inlib.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/pathnames.h
563 jobs.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
564 jobs.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(srcdir)/bushgetopt.h
565 jobs.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
566 jobs.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
567 jobs.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
568 jobs.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h
569 kill.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
570 kill.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
571 kill.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
572 kill.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/trap.h $(topdir)/src/runner/unwind_prot.h
573 kill.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/maxpath.h
574 kill.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
575 let.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
576 let.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
577 let.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
578 let.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
579 let.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
580 let.o: $(topdir)/src/pathnames.h
581 printf.o: ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/bushjmp.h
582 printf.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
583 printf.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
584 printf.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
585 printf.o: $(topdir)/src/pathnames.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h
586 printf.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/stdc.h $(srcdir)/bushgetopt.h
587 printf.o: $(topdir)/src/bushtypes.h ${srcdir}/common.h $(BUSHINCDIR)/chartypes.h
588 printf.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
589 printf.o: $(topdir)/src/pathnames.h
590 pushd.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
591 pushd.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
592 pushd.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
593 pushd.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
594 pushd.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
595 pushd.o: $(BUSHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
596 pushd.o: $(topdir)/src/pathnames.h
597 read.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
598 read.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
599 read.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
600 read.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
601 read.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
602 read.o: $(BUSHINCDIR)/shtty.h $(topdir)/src/sig.h
603 read.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
604 read.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
605 return.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
606 return.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
607 return.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
608 return.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
609 return.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
610 return.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
611 return.o: $(topdir)/src/pathnames.h
612 set.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
613 set.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
614 set.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
615 set.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
616 set.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/error.h $(topdir)/src/sig.h
617 set.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h $(topdir)/src/lxrgmr/parser.h
618 setattr.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
619 setattr.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
620 setattr.o: $(topdir)/src/quit.h $(srcdir)/common.h $(srcdir)/bushgetopt.h
621 setattr.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
622 setattr.o: $(topdir)/src/externs.h $(topdir)/src/flags.h $(topdir)/src/sig.h
623 setattr.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
624 setattr.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
625 setattr.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
626 shift.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
627 shift.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
628 shift.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
629 shift.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
630 shift.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
631 shift.o: $(topdir)/src/pathnames.h
632 shopt.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
633 shopt.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
634 shopt.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
635 shopt.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
636 shopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
637 shopt.o: $(srcdir)/common.h $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h
638 shopt.o: $(topdir)/src/bushhist.h $(topdir)/src/input/bushline.h $(topdir)/src/sig.h
639 source.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
640 source.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/impl/findcmd.h
641 source.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
642 source.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
643 source.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
644 source.o: $(srcdir)/bushgetopt.h $(topdir)/src/flags.h $(topdir)/src/trap.h
645 source.o: $(topdir)/src/runner/execute_cmd.h
646 source.o: $(topdir)/src/pathnames.h
647 suspend.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
648 suspend.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
649 suspend.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
650 suspend.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
651 suspend.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
652 suspend.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
653 test.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
654 test.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
655 test.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
656 test.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
657 test.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
658 test.o: $(topdir)/src/runner/execute_cmd.h $(topdir)/src/test.h $(topdir)/src/pathnames.h
659 times.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
660 times.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
661 times.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
662 times.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
663 times.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
664 times.o: $(BUSHINCDIR)/posixtime.h $(topdir)/src/pathnames.h
665 trap.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
666 trap.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
667 trap.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
668 trap.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
669 trap.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
670 trap.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/pathnames.h
671 type.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
672 type.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
673 type.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
674 type.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
675 type.o: $(topdir)/src/runner/execute_cmd.h $(topdir)/src/lxrgmr/parser.h
676 type.o: $(topdir)/src/externs.h $(topdir)/src/hashcmd.h $(topdir)/src/pathnames.h
677 type.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
678 ulimit.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
679 ulimit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
680 ulimit.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
681 ulimit.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
682 ulimit.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
683 ulimit.o: $(topdir)/src/pathnames.h
684 umask.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
685 umask.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
686 umask.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
687 umask.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
688 umask.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
689 umask.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
690 wait.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
691 wait.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
692 wait.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
693 wait.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
694 wait.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
695 wait.o: $(topdir)/src/jobs.h $(topdir)/src/sig.h $(topdir)/src/runner/execute_cmd.h
696 wait.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
698 complete.o: ../config.h $(topdir)/src/pathnames.h
699 complete.o: ${topdir}/src/shell.h $(topdir)/src/syntax.h ${topdir}/src/bushjmp.h ${BUSHINCDIR}/posixjmp.h ${topdir}/src/sig.h
700 complete.o: ${topdir}/src/runner/unwind_prot.h ${topdir}/src/var/variables.h
701 complete.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
702 complete.o: ${topdir}/src/bushtypes.h ${topdir}/src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
703 complete.o: ${topdir}/src/builtins.h ${topdir}/src/general.h
704 complete.o: ${topdir}/src/bushtypes.h ${BUSHINCDIR}/chartypes.h ${topdir}/src/xmalloc.h
705 complete.o: ${topdir}/src/pcomplete.h
706 complete.o: ${srcdir}/common.h ${srcdir}/bushgetopt.h
707 mapfile.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
708 mapfile.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
709 mapfile.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
710 mapfile.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
711 mapfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
712 mapfile.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
714 #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
716 # libintl dependencies
717 bind.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
718 break.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
719 caller.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
720 cd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
721 common.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
722 complete.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
723 declare.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
724 enable.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
725 evalfile.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
726 exec.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
727 exit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
728 fc.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
729 fg_bg.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
730 getopt.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
731 hash.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
732 help.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
733 history.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
734 inlib.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
735 jobs.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
736 kill.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
737 let.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
738 mapfile.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
739 mkbuiltins.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
740 printf.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
741 pushd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
742 read.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
743 return.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
744 set.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
745 setattr.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
746 shift.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
747 shopt.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
748 source.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
749 suspend.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
750 type.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
751 ulimit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
752 umask.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h