improve of cmpl.
[bush.git] / builtins / Makefile
blob9bee2773750415eea15964391182f3d77e772f62
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 = bush
19 PACKAGE_BUGREPORT = bug-bush@gnu.org
20 PACKAGE_NAME = bush
21 PACKAGE_STRING = bush 5.1-release
22 PACKAGE_VERSION = 5.1-release
25 SHELL = /bin/sh
26 RANLIB = ranlib
27 CC = gcc
28 CC_FOR_BUILD = $(CC)
29 AR = ar
30 ARFLAGS = cr
31 RM = rm -f
32 CP = cp
34 EXEEXT =
36 prefix = /usr/local
38 srcdir = .
40 topdir = ..
42 datarootdir = ${prefix}/share
44 includedir = ${prefix}/include
45 datadir = ${datarootdir}
46 localedir = ${datarootdir}/locale
48 loadablesdir = ${libdir}/bush
50 # Support an alternate destination root directory for package building
51 DESTDIR =
53 INSTALL = /usr/bin/install -c
54 INSTALL_DATA = ${INSTALL} -m 644
55 BUILD_DIR = /mnt/hgfs/workspace/tmp/srcpkg/bush
57 LIBBUILD = ${BUILD_DIR}/lib
59 PROFILE_FLAGS =
60 CFLAGS = -g -O2 -Wno-parentheses -Wno-format-security
61 CFLAGS_FOR_BUILD = -g -O2 -Wno-parentheses -Wno-format-security
62 CPPFLAGS =
63 CPPFLAGS_FOR_BUILD =
64 LOCAL_CFLAGS = ${DEBUG}
65 DEFS = -DHAVE_CONFIG_H
66 LOCAL_DEFS = -DSHELL
68 LIBS = -ldl
69 LDFLAGS = $(LOCAL_LDFLAGS) $(CFLAGS)
70 LDFLAGS_FOR_BUILD = $(LDFLAGS) $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD)
71 LOCAL_LDFLAGS = -rdynamic
72 LIBS_FOR_BUILD = $(LIBS)
73 #LIBS_FOR_BUILD = $(LIBS)
75 BUSHINCDIR = ${topdir}/include
77 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 =
84 INTL_DEP =
85 LIBINTL_H =
87 HELPDIR =
88 MKDIRS = ${topdir}/support/mkdirs
90 HELPFILES_TARGET =
92 INCLUDES = -I. -I.. -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 =
108 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 $(CC) -c $(CCFLAGS) $*.c -o $@ || ( $(RM) $*.c ; exit 1 )
121 $(RM) $*.c
123 # How to make a .c file from a .def file.
124 %.c: %.def
125 $(RM) $@
126 ./$(MKBUILTINS) $(DIRECTDEFINE) $<
128 # default rule for making a .o file from a .c file
129 .obj/builtins/%.o: %.c
130 mkdir -p .obj/builtins/`dirname $*`
131 $(RM) $@
132 $(CC) -c $(CCFLAGS) $< -o $@
134 DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
135 $(srcdir)/builtin.def $(srcdir)/caller.def \
136 $(srcdir)/cd.def $(srcdir)/colon.def \
137 $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
138 $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
139 $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
140 $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
141 $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
142 $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
143 $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
144 $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
145 $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
146 $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
147 $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
148 $(srcdir)/printf.def $(srcdir)/complete.def $(srcdir)/mapfile.def
150 STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bushgetopt.c \
151 getopt.h
153 OFILES = .obj/builtins/builtins.o \
154 .obj/builtins/alias.o \
155 .obj/builtins/bind.o \
156 .obj/builtins/break.o \
157 .obj/builtins/builtin.o \
158 .obj/builtins/caller.o \
159 .obj/builtins/cd.o \
160 .obj/builtins/colon.o \
161 .obj/builtins/command.o \
162 .obj/builtins/common.o \
163 .obj/builtins/declare.o \
164 .obj/builtins/echo.o \
165 .obj/builtins/enable.o \
166 .obj/builtins/eval.o \
167 .obj/builtins/evalfile.o \
168 .obj/builtins/evalstring.o \
169 .obj/builtins/exec.o \
170 .obj/builtins/exit.o \
171 .obj/builtins/fc.o \
172 .obj/builtins/fg_bg.o \
173 .obj/builtins/hash.o \
174 .obj/builtins/help.o \
175 .obj/builtins/history.o \
176 .obj/builtins/jobs.o \
177 .obj/builtins/kill.o \
178 .obj/builtins/let.o \
179 .obj/builtins/mapfile.o \
180 .obj/builtins/pushd.o \
181 .obj/builtins/read.o \
182 .obj/builtins/return.o \
183 .obj/builtins/set.o \
184 .obj/builtins/setattr.o \
185 .obj/builtins/shift.o \
186 .obj/builtins/source.o \
187 .obj/builtins/suspend.o \
188 .obj/builtins/test.o \
189 .obj/builtins/times.o \
190 .obj/builtins/trap.o \
191 .obj/builtins/type.o \
192 .obj/builtins/ulimit.o \
193 .obj/builtins/umask.o \
194 .obj/builtins/wait.o \
195 .obj/builtins/getopts.o \
196 .obj/builtins/shopt.o \
197 .obj/builtins/printf.o \
198 .obj/builtins/getopt.o \
199 .obj/builtins/bushgetopt.o \
200 .obj/builtins/complete.o
202 CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h tmpbuiltins.c \
203 tmpbuiltins.h
204 CREATED_OBJECTS = tmpbuiltins.o gen-helpfiles.o mkbuiltins.o
206 all: $(MKBUILTINS) libbuiltins.a $(HELPFILES_TARGET)
207 targets: libbuiltins.a $(HELPFILES_TARGET)
209 libbuiltins.a: $(MKBUILTINS) $(OFILES) .obj/builtins/builtins.o
210 $(RM) $@
211 $(AR) $(ARFLAGS) $@ $(OFILES)
212 -$(RANLIB) $@
214 tmpbuiltins.c: $(MKBUILTINS) $(DEFSRC)
215 ./$(MKBUILTINS) -externfile tmpbuiltins.h -structfile $@ \
216 -noproduction -nofunctions \
217 $(DIRECTDEFINE) $(HELPSTRINGS) $(DEFSRC)
219 tmpbuiltins.h: tmpbuiltins.c
221 gen-helpfiles.o: ../config.h
222 gen-helpfiles.o: gen-helpfiles.c
223 $(RM) $@
224 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
226 gen-helpfiles: tmpbuiltins.o gen-helpfiles.o
227 $(CC_FOR_BUILD) ${CCFLAGS_FOR_BUILD} $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD)
229 builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
230 @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
231 @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
232 ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
233 -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
234 @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
235 mv old-builtext.h builtext.h; \
236 else \
237 $(RM) old-builtext.h; \
239 @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
240 mv old-builtins.c builtins.c; \
241 else \
242 $(RM) old-builtins.c; \
245 helpdoc: gen-helpfiles
246 ./gen-helpfiles ${HELPDIRDEFINE}
248 install-help:
249 @-if test -n "${HELPDIR}" && test -d helpfiles ; then \
250 test -d $(DESTDIR)${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
251 ( for f in helpfiles/*; do \
252 echo installing $$f; \
253 ${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
254 done; ) ; \
257 install:
259 mkbuiltins.o: ../config.h
260 mkbuiltins.o: mkbuiltins.c
261 $(RM) $@
262 $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
264 mkbuiltins$(EXEEXT): mkbuiltins.o
265 $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
267 # rules for deficient makes, like SunOS
268 mkbuiltins.o: mkbuiltins.c
269 builtins.o: builtins.c
270 common.o: common.c
271 bushgetopt.o: bushgetopt.c
272 getopt.o: getopt.c
273 evalstring.o: evalstring.c
274 evalfile.o: evalfile.c
276 tmpbuiltins.o: tmpbuiltins.c
277 gen-helpfiles.o: gen-helpfiles.c
279 ulimit.o: pipesize.h
281 pipesize.h: psize.aux
282 $(SHELL) $(srcdir)/psize.sh > $@
284 # Technically this is wrong; the pipe size should be for the target system,
285 # not the build host.
286 psize.aux: psize.c
287 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(srcdir)/psize.c
289 documentation: builtins.texi
291 builtins.texi: $(MKBUILTINS)
292 ./$(MKBUILTINS) -documentonly $(DEFSRC)
294 clean:
295 $(RM) $(OFILES) $(CREATED_FILES) libbuiltins.a
296 $(RM) $(MKBUILTINS) gen-helpfiles $(CREATED_OBJECTS)
297 -test -d helpfiles && $(RM) -r helpfiles
299 mostlyclean:
300 $(RM) $(OFILES) libbuiltins.a
302 distclean maintainer-clean: clean
303 $(RM) Makefile
305 $(OFILES): $(MKBUILTINS) ../config.h
307 ../version.h: ../config.h ../Makefile Makefile
308 -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
310 # maintainer special - for now
311 po: builtins.c
312 xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
314 ${LIBINTL_H}:
315 @echo making $@ in ${INTL_BUILDDIR}
316 @(cd ${INTL_BUILDDIR} && \
317 $(MAKE) $(MFLAGS) libintl.h) || exit 1
319 # dependencies
321 .obj/builtins/alias.o: alias.def
322 .obj/builtins/bind.o: bind.def
323 .obj/builtins/break.o: break.def
324 .obj/builtins/builtin.o: builtin.def
325 .obj/builtins/caller.o: caller.def
326 .obj/builtins/cd.o: cd.def
327 .obj/builtins/colon.o: colon.def
328 .obj/builtins/command.o: command.def
329 .obj/builtins/declare.o: declare.def
330 .obj/builtins/echo.o: echo.def
331 .obj/builtins/enable.o: enable.def
332 .obj/builtins/eval.o: eval.def
333 .obj/builtins/exec.o: exec.def
334 .obj/builtins/exit.o: exit.def
335 .obj/builtins/fc.o: fc.def
336 .obj/builtins/fg_bg.o: fg_bg.def
337 .obj/builtins/hash.o: hash.def
338 .obj/builtins/help.o: help.def
339 .obj/builtins/history.o: history.def
340 .obj/builtins/jobs.o: jobs.def
341 .obj/builtins/kill.o: kill.def
342 .obj/builtins/let.o: let.def
343 .obj/builtins/mapfile.o: mapfile.def
344 .obj/builtins/printf.o: printf.def
345 .obj/builtins/pushd.o: pushd.def
346 .obj/builtins/read.o: read.def
347 .obj/builtins/return.o: return.def
348 .obj/builtins/set.o: set.def
349 .obj/builtins/setattr.o: setattr.def
350 .obj/builtins/shift.o: shift.def
351 .obj/builtins/shopt.o: shopt.def
352 .obj/builtins/source.o: source.def
353 .obj/builtins/suspend.o: suspend.def
354 .obj/builtins/test.o: test.def
355 .obj/builtins/times.o: times.def
356 .obj/builtins/trap.o: trap.def
357 .obj/builtins/type.o: type.def
358 .obj/builtins/ulimit.o: ulimit.def
359 .obj/builtins/umask.o: umask.def
360 .obj/builtins/wait.o: wait.def
361 .obj/builtins/getopts.o: getopts.def
362 .obj/builtins/reserved.o: reserved.def
363 .obj/builtins/complete.o: complete.def
365 # C files
366 bushgetopt.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
367 bushgetopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h
368 bushgetopt.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
369 bushgetopt.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
370 bushgetopt.o: $(topdir)/src/runner/unwind_prot.h $(topdir)/src/lxrgmr/dispose_cmd.h
371 bushgetopt.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/sig.h
372 bushgetopt.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(srcdir)/common.h
373 bushgetopt.o: $(BUSHINCDIR)/chartypes.h
374 common.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
375 common.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
376 common.o: $(topdir)/src/sig.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/lxrgmr/parser.h
377 common.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/stdc.h $(BUSHINCDIR)/memalloc.h
378 common.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input/input.h
379 common.o: $(topdir)/src/siglist.h $(topdir)/src/bushhist.h $(topdir)/src/quit.h
380 common.o: $(topdir)/src/runner/unwind_prot.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h
381 common.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
382 common.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/runner/execute_cmd.h $(topdir)/src/error.h
383 common.o: $(topdir)/src/externs.h $(topdir)/src/pathnames.h ./builtext.h
384 common.o: $(BUSHINCDIR)/chartypes.h
385 evalfile.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h ${BUSHINCDIR}/filecntl.h
386 evalfile.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
387 evalfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h ../config.h $(topdir)/src/bushjmp.h
388 evalfile.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h
389 evalfile.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h
390 evalfile.o: $(topdir)/src/runner/unwind_prot.h $(topdir)/src/lxrgmr/dispose_cmd.h
391 evalfile.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/sig.h
392 evalfile.o: $(topdir)/src/pathnames.h $(topdir)/src/externs.h $(topdir)/src/lxrgmr/parser.h
393 evalfile.o: $(topdir)/src/jobs.h $(topdir)/src/builtins.h $(topdir)/src/flags.h
394 evalfile.o: $(topdir)/src/input/input.h $(topdir)/src/runner/execute_cmd.h
395 evalfile.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
396 evalstring.o: ../config.h $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
397 evalstring.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(BUSHINCDIR)/posixjmp.h
398 evalstring.o: $(topdir)/src/sig.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/siglist.h
399 evalstring.o: $(BUSHINCDIR)/memalloc.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/input/input.h
400 evalstring.o: $(topdir)/src/quit.h $(topdir)/src/runner/unwind_prot.h
401 evalstring.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
402 evalstring.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
403 evalstring.o: $(topdir)/src/externs.h $(topdir)/src/jobs.h $(topdir)/src/builtins.h
404 evalstring.o: $(topdir)/src/flags.h $(topdir)/src/input/input.h $(topdir)/src/runner/execute_cmd.h
405 evalstring.o: $(topdir)/src/bushhist.h $(srcdir)/common.h
406 evalstring.o: $(topdir)/src/trap.h $(topdir)/src/redir.h $(topdir)/src/pathnames.h
407 #evalstring.o: $(topdir)/src/lxrgmr/y.tab.h
408 getopt.o: ../config.h $(BUSHINCDIR)/memalloc.h
409 getopt.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/bushjmp.h $(topdir)/src/lxrgmr/command.h
410 getopt.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/error.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
411 getopt.o: $(topdir)/src/quit.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/runner/unwind_prot.h
412 getopt.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
413 getopt.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h $(topdir)/src/externs.h
414 getopt.o: $(srcdir)/getopt.h
415 mkbuiltins.o: ../config.h $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
416 mkbuiltins.o: ${BUSHINCDIR}/filecntl.h
417 mkbuiltins.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h
419 # def files
420 alias.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
421 alias.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
422 alias.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
423 alias.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(srcdir)/common.h
424 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
425 alias.o: $(topdir)/src/pathnames.h
426 bind.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
427 bind.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
428 bind.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(srcdir)/bushgetopt.h
429 bind.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/input/bushline.h
430 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
431 break.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
432 break.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
433 break.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
434 break.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
435 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
436 break.o: $(topdir)/src/pathnames.h $(topdir)/src/runner/execute_cmd.h
437 builtin.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
438 builtin.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
439 builtin.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
440 builtin.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
441 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
442 builtin.o: $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h $(topdir)/src/runner/execute_cmd.h
443 caller.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
444 caller.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h
445 caller.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
446 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
447 caller.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h ./builtext.h
448 caller.o: ${BUSHINCDIR}/chartypes.h $(topdir)/src/bushtypes.h $(topdir)/src/pathnames.h
449 cd.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
450 cd.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h
451 cd.o: $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
452 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
453 cd.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
454 cd.o: $(topdir)/src/sig.h
455 colon.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
456 colon.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
457 colon.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
458 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
459 colon.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
460 colon.o: $(srcdir)/common.h
461 command.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
462 command.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
463 command.o: $(topdir)/src/quit.h $(srcdir)/bushgetopt.h $(BUSHINCDIR)/maxpath.h
464 command.o: $(topdir)/src/sig.h
465 command.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
466 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
467 command.o: $(topdir)/src/pathnames.h
468 declare.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
469 declare.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
470 declare.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
471 declare.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
472 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
473 declare.o: $(topdir)/src/var/arrayfunc.h $(srcdir)/bushgetopt.h $(topdir)/src/flags.h
474 declare.o: ./builtext.h $(topdir)/src/pathnames.h
475 echo.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
476 echo.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
477 echo.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
478 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
479 echo.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
480 echo.o: $(srcdir)/common.h
481 enable.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
482 enable.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
483 enable.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
484 enable.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
485 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
486 enable.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
487 enable.o: $(topdir)/src/pcomplete.h
488 eval.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
489 eval.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
490 eval.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
491 eval.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
492 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
493 eval.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
494 exec.o: $(topdir)/src/bushtypes.h
495 exec.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
496 exec.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
497 exec.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
498 exec.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/flags.h
499 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
500 exec.o: $(srcdir)/common.h $(topdir)/src/runner/execute_cmd.h $(BUSHINCDIR)/maxpath.h
501 exec.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
502 exit.o: $(topdir)/src/bushtypes.h
503 exit.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
504 exit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
505 exit.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
506 exit.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
507 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
508 exit.o: $(topdir)/src/runner/execute_cmd.h
509 exit.o: $(BUSHINCDIR)/maxpath.h ./builtext.h $(topdir)/src/pathnames.h
510 fc.o: $(topdir)/src/bushtypes.h $(BUSHINCDIR)/posixstat.h
511 fc.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/command.h $(srcdir)/bushgetopt.h
512 fc.o: $(topdir)/src/bushhist.h $(topdir)/src/lxrgmr/parser.h
513 fc.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
514 fc.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
515 fc.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
516 fc.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/shell.h $(topdir)/src/syntax.h
517 fc.o: $(topdir)/src/flags.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
518 fc.o: $(topdir)/src/bushansi.h $(BUSHINCDIR)/ansi_stdlib.h $(BUSHINCDIR)/chartypes.h
519 fc.o: $(topdir)/src/pathnames.h
520 fg_bg.o: $(topdir)/src/bushtypes.h $(srcdir)/bushgetopt.h
521 fg_bg.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
522 fg_bg.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
523 fg_bg.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
524 fg_bg.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
525 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
526 fg_bg.o: $(topdir)/src/runner/execute_cmd.h
527 fg_bg.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
528 getopts.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
529 getopts.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
530 getopts.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
531 getopts.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
532 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
533 getopts.o: $(topdir)/src/runner/execute_cmd.h
534 getopts.o: $(topdir)/src/pathnames.h
535 hash.o: $(topdir)/src/builtins.h $(topdir)/src/lxrgmr/command.h $(topdir)/src/quit.h
536 hash.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/hashlib.h $(topdir)/src/sig.h
537 hash.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
538 hash.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
539 hash.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
540 hash.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
541 hash.o: $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/pathnames.h
542 help.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
543 help.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
544 help.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
545 help.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
546 help.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
547 help.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
548 help.o: ${srcdir}/common.h $(topdir)/src/sig.h $(topdir)/src/pathnames.h
549 history.o: $(topdir)/src/bushtypes.h
550 history.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
551 history.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
552 history.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
553 history.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h $(topdir)/src/lxrgmr/parser.h
554 history.o: ${BUSHINCDIR}/filecntl.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h
555 history.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(topdir)/src/bushhist.h $(BUSHINCDIR)/maxpath.h
556 history.o: $(topdir)/src/pathnames.h
557 inlib.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
558 inlib.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
559 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
560 inlib.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
561 inlib.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/pathnames.h
562 jobs.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
563 jobs.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/quit.h $(srcdir)/bushgetopt.h
564 jobs.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/externs.h $(topdir)/src/jobs.h
565 jobs.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
566 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
567 jobs.o: $(topdir)/src/sig.h $(topdir)/src/pathnames.h
568 kill.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/error.h
569 kill.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
570 kill.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
571 kill.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/trap.h $(topdir)/src/runner/unwind_prot.h
572 kill.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/maxpath.h
573 kill.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
574 let.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
575 let.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
576 let.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
577 let.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
578 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
579 let.o: $(topdir)/src/pathnames.h
580 printf.o: ../config.h $(BUSHINCDIR)/memalloc.h $(topdir)/src/bushjmp.h
581 printf.o: $(topdir)/src/lxrgmr/command.h $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
582 printf.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
583 printf.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
584 printf.o: $(topdir)/src/pathnames.h $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h
585 printf.o: $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h $(BUSHINCDIR)/stdc.h $(srcdir)/bushgetopt.h
586 printf.o: $(topdir)/src/bushtypes.h ${srcdir}/common.h $(BUSHINCDIR)/chartypes.h
587 printf.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
588 printf.o: $(topdir)/src/pathnames.h
589 pushd.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
590 pushd.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
591 pushd.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
592 pushd.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(topdir)/src/sig.h
593 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
594 pushd.o: $(BUSHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
595 pushd.o: $(topdir)/src/pathnames.h
596 read.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
597 read.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
598 read.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
599 read.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
600 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
601 read.o: $(BUSHINCDIR)/shtty.h $(topdir)/src/sig.h
602 read.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
603 read.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
604 return.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
605 return.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
606 return.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
607 return.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
608 return.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
609 return.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
610 return.o: $(topdir)/src/pathnames.h
611 set.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
612 set.o: $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h
613 set.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
614 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
615 set.o: $(BUSHINCDIR)/maxpath.h $(topdir)/src/error.h $(topdir)/src/sig.h
616 set.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h $(topdir)/src/lxrgmr/parser.h
617 setattr.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
618 setattr.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(BUSHINCDIR)/maxpath.h
619 setattr.o: $(topdir)/src/quit.h $(srcdir)/common.h $(srcdir)/bushgetopt.h
620 setattr.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
621 setattr.o: $(topdir)/src/externs.h $(topdir)/src/flags.h $(topdir)/src/sig.h
622 setattr.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/runner/unwind_prot.h $(topdir)/src/var/variables.h
623 setattr.o: $(topdir)/src/conftypes.h $(topdir)/src/runner/execute_cmd.h
624 setattr.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
625 shift.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
626 shift.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
627 shift.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
628 shift.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
629 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
630 shift.o: $(topdir)/src/pathnames.h
631 shopt.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
632 shopt.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
633 shopt.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
634 shopt.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
635 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
636 shopt.o: $(srcdir)/common.h $(srcdir)/bushgetopt.h $(topdir)/src/pathnames.h
637 shopt.o: $(topdir)/src/bushhist.h $(topdir)/src/input/bushline.h $(topdir)/src/sig.h
638 source.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
639 source.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/impl/findcmd.h
640 source.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
641 source.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
642 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
643 source.o: $(srcdir)/bushgetopt.h $(topdir)/src/flags.h $(topdir)/src/trap.h
644 source.o: $(topdir)/src/runner/execute_cmd.h
645 source.o: $(topdir)/src/pathnames.h
646 suspend.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
647 suspend.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
648 suspend.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
649 suspend.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
650 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
651 suspend.o: $(topdir)/src/jobs.h $(topdir)/src/pathnames.h
652 test.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
653 test.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
654 test.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
655 test.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
656 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
657 test.o: $(topdir)/src/runner/execute_cmd.h $(topdir)/src/test.h $(topdir)/src/pathnames.h
658 times.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
659 times.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
660 times.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
661 times.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
662 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
663 times.o: $(BUSHINCDIR)/posixtime.h $(topdir)/src/pathnames.h
664 trap.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
665 trap.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h $(topdir)/src/externs.h
666 trap.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
667 trap.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
668 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
669 trap.o: $(topdir)/src/impl/findcmd.h $(topdir)/src/pathnames.h
670 type.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
671 type.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
672 type.o: $(topdir)/src/quit.h $(srcdir)/common.h $(BUSHINCDIR)/maxpath.h $(topdir)/src/sig.h
673 type.o: $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/lxrgmr/subst.h
674 type.o: $(topdir)/src/runner/execute_cmd.h $(topdir)/src/lxrgmr/parser.h
675 type.o: $(topdir)/src/externs.h $(topdir)/src/hashcmd.h $(topdir)/src/pathnames.h
676 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
677 ulimit.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
678 ulimit.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
679 ulimit.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
680 ulimit.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
681 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
682 ulimit.o: $(topdir)/src/pathnames.h
683 umask.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
684 umask.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
685 umask.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
686 umask.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
687 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
688 umask.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
689 wait.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
690 wait.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
691 wait.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h
692 wait.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
693 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
694 wait.o: $(topdir)/src/jobs.h $(topdir)/src/sig.h $(topdir)/src/runner/execute_cmd.h
695 wait.o: $(BUSHINCDIR)/chartypes.h $(topdir)/src/pathnames.h
697 complete.o: ../config.h $(topdir)/src/pathnames.h
698 complete.o: ${topdir}/src/shell.h $(topdir)/src/syntax.h ${topdir}/src/bushjmp.h ${BUSHINCDIR}/posixjmp.h ${topdir}/src/sig.h
699 complete.o: ${topdir}/src/runner/unwind_prot.h ${topdir}/src/var/variables.h
700 complete.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
701 complete.o: ${topdir}/src/bushtypes.h ${topdir}/src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
702 complete.o: ${topdir}/src/builtins.h ${topdir}/src/general.h
703 complete.o: ${topdir}/src/bushtypes.h ${BUSHINCDIR}/chartypes.h ${topdir}/src/xmalloc.h
704 complete.o: ${topdir}/src/pcomplete.h
705 complete.o: ${srcdir}/common.h ${srcdir}/bushgetopt.h
706 mapfile.o: $(topdir)/src/lxrgmr/command.h ../config.h $(BUSHINCDIR)/memalloc.h
707 mapfile.o: $(topdir)/src/error.h $(topdir)/src/general.h $(topdir)/src/xmalloc.h
708 mapfile.o: $(topdir)/src/quit.h $(topdir)/src/lxrgmr/dispose_cmd.h $(topdir)/src/lxrgmr/make_cmd.h $(topdir)/src/sig.h
709 mapfile.o: $(topdir)/src/lxrgmr/subst.h $(topdir)/src/externs.h $(BUSHINCDIR)/maxpath.h
710 mapfile.o: $(topdir)/src/shell.h $(topdir)/src/syntax.h $(topdir)/src/var/variables.h $(topdir)/src/conftypes.h
711 mapfile.o: $(topdir)/src/var/arrayfunc.h $(topdir)/src/pathnames.h
713 #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
715 # libintl dependencies
716 bind.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
717 break.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
718 caller.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
719 cd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
720 common.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
721 complete.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
722 declare.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
723 enable.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
724 evalfile.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
725 exec.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
726 exit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
727 fc.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
728 fg_bg.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
729 getopt.c: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
730 hash.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
731 help.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
732 history.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
733 inlib.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
734 jobs.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
735 kill.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
736 let.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
737 mapfile.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
738 mkbuiltins.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
739 printf.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
740 pushd.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
741 read.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
742 return.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
743 set.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
744 setattr.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
745 shift.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
746 shopt.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
747 source.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
748 suspend.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
749 type.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
750 ulimit.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
751 umask.o: ${topdir}/src/xmalloc.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h