improve of cmpl.
[bush.git] / Makefile.in
blobe2e84443950b6a131426c31eb25e2774280a6288
1 # Makefile for bush-5.0, version 4.30
3 # Copyright (C) 1996-2018 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 # Make sure the first target in the makefile is the right one
19 all: .made
21 PACKAGE = @PACKAGE_NAME@
22 VERSION = @PACKAGE_VERSION@
24 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
25 PACKAGE_NAME = @PACKAGE_NAME@
26 PACKAGE_STRING = @PACKAGE_STRING@
27 PACKAGE_VERSION = @PACKAGE_VERSION@
29 PACKAGE_TARNAME = @PACKAGE_TARNAME@
31 # Include some boilerplate Gnu makefile definitions.
32 prefix = @prefix@
34 exec_prefix = @exec_prefix@
36 datarootdir = @datarootdir@
38 bindir = @bindir@
39 libdir = @libdir@
40 infodir = @infodir@
41 includedir = @includedir@
42 datadir = @datadir@
43 localedir = @localedir@
44 pkgconfigdir = ${libdir}/pkgconfig
46 loadablesdir = @loadablesdir@
47 headersdir = @headersdir@
49 docdir = @docdir@
51 mandir = @mandir@
52 manpfx = man
54 man1ext = .1
55 man1dir = $(mandir)/$(manpfx)1
56 man3ext = .3
57 man3dir = $(mandir)/$(manpfx)3
59 htmldir = @htmldir@
61 # Support an alternate destination root directory for package building
62 DESTDIR =
64 topdir = @top_srcdir@
65 BUILD_DIR = @BUILD_DIR@
66 top_builddir = @BUILD_DIR@
67 srcdir = @srcdir@
68 VPATH = @srcdir@
70 @SET_MAKE@
71 CC = @CC@
72 CC_FOR_BUILD = @CC_FOR_BUILD@
73 YACC = @YACC@
74 SHELL = @MAKE_SHELL@
75 CP = cp
76 RM = rm -f
77 AR = @AR@
78 ARFLAGS = @ARFLAGS@
79 RANLIB = @RANLIB@
80 SIZE = @SIZE@
81 STRIP = strip
83 INSTALL = @INSTALL@
84 INSTALL_PROGRAM = @INSTALL_PROGRAM@
85 INSTALL_SCRIPT = @INSTALL_SCRIPT@
86 INSTALL_DATA = @INSTALL_DATA@
87 INSTALLMODE= -m 0755
88 INSTALLMODE2 = -m 0555
90 TESTSCRIPT = @TESTSCRIPT@
92 DEBUGGER_START_FILE = @DEBUGGER_START_FILE@
94 #If you have purify, and want to use it, run the make as `make PURIFY=purify'
95 #PURIFY = @PURIFY@
97 # Here is a rule for making .o files from .c files that does not
98 # force the type of the machine (like -M_MACHINE) into the flags.
99 #.c.o:
100 # @echo $@ $<
103 .obj/impl/%.o : src/impl/%.c
104 .obj/input/%.o : src/input/%.c
105 .obj/lxrgmr/%.o : src/lxrgmr/%.c
106 .obj/runner/%.o : src/runner/%.c
107 .obj/var/%.o : src/var/%.c
108 .obj/%.o : src/%.c
109 mkdir -p `dirname $@`
110 $(RM) $@
111 $(CC) $(CCFLAGS) -c $< -o $@
112 @echo $(CC) $(CCFLAGS) -c $< -o $@
115 EXEEXT = @EXEEXT@
116 OBJEXT = @OBJEXT@
118 # The name of this program and some version information.
119 VERSPROG = bushversion$(EXEEXT)
120 VERSOBJ = bushversion.$(OBJEXT)
122 Program = bush$(EXEEXT)
123 Version = @BUSHVERS@
124 PatchLevel = `$(BUILD_DIR)/$(VERSPROG) -p`
125 RELSTATUS = @RELSTATUS@
127 Machine = @host_cpu@
128 OS = @host_os@
129 VENDOR = @host_vendor@
130 MACHTYPE = @host@
132 # comment out for release
133 DEBUG = @DEBUG@
134 MALLOC_DEBUG = @MALLOC_DEBUG@
136 THIS_SH = $(BUILD_DIR)/$(Program)
138 # PROFILE_FLAGS is either -pg, to generate profiling info for use
139 # with gprof, or nothing (the default).
140 PROFILE_FLAGS= @PROFILE_FLAGS@
142 CFLAGS = @CFLAGS@
143 CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@
144 CPPFLAGS = @CPPFLAGS@
145 CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
146 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG} ${MALLOC_DEBUG}
147 DEFS = @DEFS@
148 LOCAL_DEFS = @LOCAL_DEFS@
150 LOCALE_DEFS = -DLOCALEDIR='"$(localedir)"' -DPACKAGE='"$(PACKAGE)"'
152 LOCAL_LIBS = @LOCAL_LIBS@
153 LIBS = $(BUILTINS_LIB) $(LIBRARIES) @LIBS@
154 LIBS_FOR_BUILD =
156 STATIC_LD = @STATIC_LD@
157 LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
159 SYSTEM_FLAGS = -DPROGRAM='"$(Program)"' -DCONF_HOSTTYPE='"$(Machine)"' -DCONF_OSTYPE='"$(OS)"' -DCONF_MACHTYPE='"$(MACHTYPE)"' -DCONF_VENDOR='"$(VENDOR)"' $(LOCALE_DEFS)
161 BASE_CCFLAGS = $(SYSTEM_FLAGS) $(LOCAL_DEFS) \
162 $(DEFS) $(LOCAL_CFLAGS) $(INCLUDES)
164 CCFLAGS = $(ADDON_CFLAGS) $(BASE_CCFLAGS) ${PROFILE_FLAGS} $(CPPFLAGS) $(CFLAGS)
166 CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
168 BASE_LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
169 LDFLAGS = ${ADDON_LDFLAGS} ${BASE_LDFLAGS} ${PROFILE_FLAGS} ${STATIC_LD} -fpic
170 LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD)
172 ASAN_XCFLAGS = -fsanitize=address -fno-omit-frame-pointer
173 ASAN_XLDFLAGS = -fsanitize=address
175 GCOV_XCFLAGS = -fprofile-arcs -ftest-coverage
176 GCOV_XLDFLAGS = -fprofile-arcs -ftest-coverage
178 INCLUDES = -I. @RL_INCLUDE@ -I$(srcdir) -I$(BUSHINCDIR) -I$(BUSHSRC) -I$(LIBSRC) $(INTL_INC)
180 # Maybe add: -Wextra
181 GCC_LINT_FLAGS = -O -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wno-parentheses \
182 -Wcast-align -Wstrict-prototypes -Wconversion -Wformat \
183 -Wformat-nonliteral -Wmissing-braces -Wuninitialized \
184 -Wmissing-declarations -Winline \
185 -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
187 GCC_LINT_CFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(GCC_LINT_FLAGS)
190 # Support libraries
193 dot = .
195 LIBSUBDIR = lib
196 SRCSUBDIR = src
197 LIBSRC = $(srcdir)/$(LIBSUBDIR)
198 BUSHSRC = $(srcdir)/$(SRCSUBDIR)
200 LIBBUILD = ${BUILD_DIR}/${LIBSUBDIR}
202 SUBDIR_INCLUDES = -I. @RL_INCLUDE@ -I$(topdir) -I$(topdir)/$(LIBSUBDIR)
204 BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
205 USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
207 # the bush library
208 # the library is a mix of functions that the C library does not provide on
209 # some platforms and general shell utility functions
210 SH_LIBSRC = $(LIBSRC)/sh
211 SH_LIBDIR = $(dot)/${LIBSUBDIR}/sh
212 SH_ABSSRC = ${topdir}/${SH_LIBSRC}
214 SHLIB_SOURCE = ${SH_LIBSRC}/clktck.c ${SH_LIBSRC}/getcwd.c \
215 ${SH_LIBSRC}/getenv.c ${SH_LIBSRC}/oslib.c \
216 ${SH_LIBSRC}/setlinebuf.c ${SH_LIBSRC}/strchrnul.c \
217 ${SH_LIBSRC}/strcasecmp.c ${SH_LIBSRC}/strdup.c \
218 ${SH_LIBSRC}/strerror.c \
219 ${SH_LIBSRC}/strtod.c ${SH_LIBSRC}/strtol.c \
220 ${SH_LIBSRC}/strtoul.c ${SH_LIBSRC}/vprint.c \
221 ${SH_LIBSRC}/itos.c ${SH_LIBSRC}/rename.c \
222 ${SH_LIBSRC}/zread.c ${SH_LIBSRC}/zwrite.c \
223 ${SH_LIBSRC}/shtty.c ${SH_LIBSRC}/inet_aton.c \
224 ${SH_LIBSRC}/netopen.c ${SH_LIBSRC}/strpbrk.c \
225 ${SH_LIBSRC}/timeval.c ${SH_LIBSRC}/clock.c \
226 ${SH_LIBSRC}/makepath.c ${SH_LIBSRC}/pathcanon.c \
227 ${SH_LIBSRC}/pathphys.c ${SH_LIBSRC}/stringlist.c \
228 ${SH_LIBSRC}/stringvec.c ${SH_LIBSRC}/tmpfile.c \
229 ${SH_LIBSRC}/spell.c ${SH_LIBSRC}/strtrans.c \
230 ${SH_LIBSRC}/strcasestr.c ${SH_LIBSRC}/shquote.c \
231 ${SH_LIBSRC}/snprintf.c ${SH_LIBSRC}/mailstat.c \
232 ${SH_LIBSRC}/fmtulong.c ${SH_LIBSRC}/fmtullong.c \
233 ${SH_LIBSRC}/strtoll.c ${SH_LIBSRC}/strtoull.c \
234 ${SH_LIBSRC}/strtoimax.c ${SH_LIBSRC}/strtoumax.c \
235 ${SH_LIBSRC}/fmtumax.c ${SH_LIBSRC}/netconn.c \
236 ${SH_LIBSRC}/mktime.c ${SH_LIBSRC}/strftime.c \
237 ${SH_LIBSRC}/memset.c ${SH_LIBSRC}/mbschr.c \
238 ${SH_LIBSRC}/zcatfd.c ${SH_LIBSRC}/shmatch.c \
239 ${SH_LIBSRC}/strnlen.c ${SH_LIBSRC}/winsize.c \
240 ${SH_LIBSRC}/eaccess.c ${SH_LIBSRC}/wcsdup.c \
241 ${SH_LIBSRC}/zmapfd.c ${SH_LIBSRC}/fpurge.c \
242 ${SH_LIBSRC}/zgetline.c ${SH_LIBSRC}/mbscmp.c \
243 ${SH_LIBSRC}/casemod.c ${SH_LIBSRC}/uconvert.c \
244 ${SH_LIBSRC}/ufuncs.c ${SH_LIBSRC}/dprintf.c \
245 ${SH_LIBSRC}/input_avail.c ${SH_LIBSRC}/mbscasecmp.c \
246 ${SH_LIBSRC}/fnxform.c ${SH_LIBSRC}/unicode.c \
247 ${SH_LIBSRC}/wcswidth.c ${SH_LIBSRC}/wcsnwidth.c \
248 ${SH_LIBSRC}/shmbchar.c ${SH_LIBSRC}/utf8.c \
249 ${SH_LIBSRC}/random.c ${SH_LIBSRC}/gettimeofday.c
251 SHLIB_LIB = -lsh
252 SHLIB_LIBNAME = libsh.a
253 SHLIB_LIBRARY = ${SH_LIBDIR}/${SHLIB_LIBNAME}
254 SHLIB_LDFLAGS = -L${SH_LIBDIR}
255 SHLIB_DEP = ${SHLIB_LIBRARY}
257 # we assume for now that readline source is being shipped with bush
258 RL_LIBSRC = $(LIBSRC)/readline
259 RL_LIBDOC = $(RL_LIBSRC)/doc
260 RL_LIBDIR = @RL_LIBDIR@
261 RL_ABSSRC = ${topdir}/$(RL_LIBDIR)
263 RL_INCLUDEDIR = @RL_INCLUDEDIR@
265 READLINE_LIB = @READLINE_LIB@
266 READLINE_LIBRARY = $(RL_LIBDIR)/libreadline.a
267 READLINE_LDFLAGS = -L${RL_LIBDIR}
268 READLINE_DEP = @READLINE_DEP@
270 # The source, object and documentation of the GNU Readline library.
271 READLINE_SOURCE = $(RL_LIBSRC)/rldefs.h $(RL_LIBSRC)/rlconf.h \
272 $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/tcap.h \
273 $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/keymaps.h \
274 $(RL_LIBSRC)/history.h $(RL_LIBSRC)/histlib.h \
275 $(RL_LIBSRC)/posixstat.h $(RL_LIBSRC)/tilde.h \
276 $(RL_LIBSRC)/rlstdc.h ${RL_LIBSRC}/xmalloc.h \
277 $(RL_LIBSRC)/rlshell.h ${RL_LIBSRC}/rlprivate.h \
278 $(RL_LIBSRC)/colors.h $(RL_LIBSRC)/parse-colors.h \
279 $(RL_LIBSRC)/funmap.c $(RL_LIBSRC)/emacs_keymap.c \
280 $(RL_LIBSRC)/search.c $(RL_LIBSRC)/vi_keymap.c \
281 $(RL_LIBSRC)/keymaps.c $(RL_LIBSRC)/parens.c \
282 $(RL_LIBSRC)/vi_mode.c $(RL_LIBSRC)/callback.c \
283 $(RL_LIBSRC)/readline.c $(RL_LIBSRC)/tilde.c \
284 $(RL_LIBSRC)/rltty.c $(RL_LIBSRC)/complete.c \
285 $(RL_LIBSRC)/bind.c $(RL_LIBSRC)/isearch.c \
286 $(RL_LIBSRC)/display.c $(RL_LIBSRC)/signals.c \
287 $(RL_LIBSRC)/util.c $(RL_LIBSRC)/kill.c $(RL_LIBSRC)/text.c \
288 $(RL_LIBSRC)/undo.c $(RL_LIBSRC)/macro.c \
289 $(RL_LIBSRC)/terminal.c $(RL_LIBSRC)/nls.c \
290 $(RL_LIBSRC)/input.c $(RL_LIBSRC)/xmalloc.c \
291 $(RL_LIBSRC)/shell.c $(RL_LIBSRC)/savestring.c \
292 $(RL_LIBSRC)/colors.c $(RL_LIBSRC)/parse-colors.c \
293 $(RL_LIBSRC)/misc.c $(RL_LIBSRC)/mbutil.c $(RL_LIBSRC)/compat.c \
294 $(RL_LIBSRC)/histexpand.c $(RL_LIBSRC)/history.c \
295 $(RL_LIBSRC)/histsearch.c $(RL_LIBSRC)/histfile.c
297 READLINE_OBJ = $(RL_LIBDIR)/readline.o $(RL_LIBDIR)/funmap.o \
298 $(RL_LIBDIR)/parens.o $(RL_LIBDIR)/search.o \
299 $(RL_LIBDIR)/keymaps.o $(RL_LIBDIR)/xmalloc.o \
300 $(RL_LIBDIR)/rltty.o $(RL_LIBDIR)/complete.o \
301 $(RL_LIBDIR)/bind.o $(RL_LIBDIR)/isearch.o \
302 $(RL_LIBDIR)/display.o $(RL_LIBDIR)/signals.o \
303 $(RL_LIBDIR)/tilde.o $(RL_LIBDIR)/util.o \
304 $(RL_LIBDIR)/kill.o $(RL_LIBDIR)/undo.o $(RL_LIBDIR)/nls.o \
305 $(RL_LIBDIR)/macro.o $(RL_LIBDIR)/input.o \
306 $(RL_LIBDIR)/terminal.o $(RL_LIBDIR)/callback.o \
307 $(RL_LIBDIR)/shell.o $(RL_LIBDIR)/savestring.o \
308 $(RL_LIBDIR)/mbutil.o $(RL_LIBDIR)/compat.o \
309 $(RL_LIBDIR)/history.o $(RL_LIBDIR)/histexpand.o \
310 $(RL_LIBDIR)/histsearch.o $(RL_LIBDIR)/histfile.o \
311 $(RL_LIBDIR)/colors.o $(RL_LIBDIR)/parse-colors.o
313 HIST_LIBSRC = $(LIBSRC)/readline
314 HIST_LIBDIR = @HIST_LIBDIR@
315 HIST_ABSSRC = ${topdir}/$(HIST_LIBDIR)
317 HISTORY_LIB = @HISTORY_LIB@
318 HISTORY_LIBRARY = $(HIST_LIBDIR)/libhistory.a
319 HISTORY_LDFLAGS = -L$(HIST_LIBDIR)
320 HISTORY_DEP = @HISTORY_DEP@
322 # The source, object and documentation of the history library.
323 HISTORY_SOURCE = $(HIST_LIBSRC)/history.c $(HIST_LIBSRC)/histexpand.c \
324 $(HIST_LIBSRC)/histsearch.c $(HIST_LIBSRC)/histfile.c \
325 $(HIST_LIBSRC)/shell.c \
326 $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/histlib.h
327 HISTORY_OBJ = $(HIST_LIBDIR)/history.o $(HIST_LIBDIR)/histexpand.o \
328 $(HIST_LIBDIR)/histsearch.o $(HIST_LIBDIR)/histfile.o \
329 $(HIST_LIBDIR)/shell.o
331 # You only need termcap (or curses) if you are linking with GNU Readline.
332 TERM_LIBSRC = $(LIBSRC)/termcap
333 TERM_LIBDIR = $(dot)/$(LIBSUBDIR)/termcap
334 TERM_ABSSRC = ${topdir}/$(TERM_LIBDIR)
336 TERMCAP_LIB = @TERMCAP_LIB@
337 TERMCAP_LIBRARY = $(TERM_LIBDIR)/libtermcap.a
338 TERMCAP_LDFLAGS = -L$(TERM_LIBDIR)
339 TERMCAP_DEP = @TERMCAP_DEP@
341 TERMCAP_SOURCE = $(TERM_LIBSRC)/termcap.c $(TERM_LIBSRC)/tparam.c
342 TERMCAP_OBJ = $(TERM_LIBDIR)/termcap.o $(TERM_LIBDIR)/tparam.o
344 GLOB_LIBSRC = $(LIBSRC)/glob
345 GLOB_LIBDIR = $(dot)/$(LIBSUBDIR)/glob
346 GLOB_ABSSRC = ${topdir}/$(GLOB_LIBDIR)
348 GLOB_LIB = -lglob
349 GLOB_LIBRARY = $(GLOB_LIBDIR)/libglob.a
350 GLOB_LDFLAGS = -L$(GLOB_LIBDIR)
351 GLOB_DEP = $(GLOB_LIBRARY)
353 GLOB_SOURCE = $(GLOB_LIBSRC)/glob.c $(GLOB_LIBSRC)/strmatch.c \
354 $(GLOB_LIBSRC)/smatch.c $(GLOB_LIBSRC)/xmbsrtowcs.c \
355 $(GLOB_LIBSRC)/glob_loop.c $(GLOB_LIBSRC)/sm_loop.c \
356 $(GLOB_LIBSRC)/gmisc.c \
357 $(GLOB_LIBSRC)/glob.h $(GLOB_LIBSRC)/strmatch.h
358 GLOB_OBJ = $(GLOB_LIBDIR)/glob.o $(GLOB_LIBDIR)/strmatch.o \
359 $(GLOB_LIBDIR)/smatch.o $(GLOB_LIBDIR)/xmbsrtowcs.o \
360 $(GLOB_LIBDIR)/gmisc.o
362 # The source, object and documentation for the GNU Tilde library.
363 TILDE_LIBSRC = $(LIBSRC)/tilde
364 TILDE_LIBDIR = $(dot)/$(LIBSUBDIR)/tilde
365 TILDE_ABSSRC = ${topdir}/$(TILDE_LIBDIR)
367 TILDE_LIB = @TILDE_LIB@
368 TILDE_LIBRARY = $(TILDE_LIBDIR)/libtilde.a
369 TILDE_LDFLAGS = -L$(TILDE_LIBDIR)
370 TILDE_DEP = $(TILDE_LIBRARY)
372 TILDE_SOURCE = $(TILDE_LIBSRC)/tilde.c $(TILDE_LIBSRC)/tilde.h
373 TILDE_OBJ = $(TILDE_LIBDIR)/tilde.o
375 # libintl
376 INTL_LIBSRC = $(LIBSRC)/intl
377 INTL_LIBDIR = $(dot)/$(LIBSUBDIR)/intl
378 INTL_ABSSRC = ${topdir}/$(INTL_LIB)
379 INTL_BUILDDIR = ${LIBBUILD}/intl
381 INTL_LIB = @LIBINTL@
382 INTL_LIBRARY = $(INTL_LIBDIR)/libintl.a
383 INTL_DEP = @INTL_DEP@
384 INTL_INC = @INTL_INC@
386 LIBINTL_H = @LIBINTL_H@
388 # libiconv
389 LIBICONV = @LIBICONV@
391 # tests
392 LIBINTL = @LIBINTL@
393 LTLIBINTL = @LTLIBINTL@
394 INTLLIBS = @INTLLIBS@
395 INTLOBJS = @INTLOBJS@
397 # Our malloc.
398 MALLOC_TARGET = @MALLOC_TARGET@
400 # set to alloca.o if we are using the C alloca in lib/malloc
401 ALLOCA = @ALLOCA@
403 ALLOC_LIBSRC = $(LIBSRC)/malloc
404 ALLOC_LIBDIR = $(dot)/$(LIBSUBDIR)/malloc
405 ALLOC_ABSSRC = ${topdir}/$(ALLOC_LIBDIR)
407 MALLOC_SRC = @MALLOC_SRC@
408 MALLOC_OTHERSRC = ${ALLOC_LIBSRC}/trace.c ${ALLOC_LIBSRC}/stats.c \
409 ${ALLOC_LIBSRC}/table.c ${ALLOC_LIBSRC}/watch.c
410 MALLOC_SOURCE = ${ALLOC_LIBSRC}/${MALLOC_SRC} ${MALLOC_OTHERSRC}
411 MALLOC_CFLAGS = -DRCHECK -Dbotch=programming_error ${MALLOC_DEBUG}
413 MALLOC_LIB = @MALLOC_LIB@
414 MALLOC_LIBRARY = @MALLOC_LIBRARY@
415 MALLOC_LDFLAGS = @MALLOC_LDFLAGS@
416 MALLOC_DEP = @MALLOC_DEP@
418 ALLOC_HEADERS = $(ALLOC_LIBSRC)/getpagesize.h $(ALLOC_LIBSRC)/shmalloc.h \
419 $(ALLOC_LIBSRC)/imalloc.h $(ALLOC_LIBSRC)/mstats.h \
420 $(ALLOC_LIBSRC)/table.h $(ALLOC_LIBSRC)/watch.h
422 $(MALLOC_LIBRARY): ${MALLOC_SOURCE} ${ALLOC_HEADERS} config.h
423 @(cd $(ALLOC_LIBDIR) && \
424 $(MAKE) $(MFLAGS) \
425 MALLOC_CFLAGS="$(MALLOC_CFLAGS)" ${MALLOC_TARGET} ) || exit 1
427 BUSHINCDIR = ${srcdir}/include
428 BUSHINCFILES = $(BUSHINCDIR)/posixstat.h $(BUSHINCDIR)/ansi_stdlib.h \
429 $(BUSHINCDIR)/filecntl.h $(BUSHINCDIR)/posixdir.h \
430 $(BUSHINCDIR)/memalloc.h $(BUSHINCDIR)/stdc.h \
431 $(BUSHINCDIR)/posixjmp.h $(BUSHINCDIR)/posixwait.h \
432 $(BUSHINCDIR)/posixtime.h $(BUSHINCDIR)/systimes.h \
433 $(BUSHINCDIR)/unionwait.h $(BUSHINCDIR)/maxpath.h \
434 $(BUSHINCDIR)/shtty.h $(BUSHINCDIR)/typemax.h \
435 $(BUSHINCDIR)/ocache.h
437 LIBRARIES = $(GLOB_LIB) $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LIB) \
438 $(TILDE_LIB) $(MALLOC_LIB) $(INTL_LIB) $(LIBICONV) $(LOCAL_LIBS)
440 LIBDEP = $(GLOB_DEP) $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) \
441 $(TILDE_DEP) $(MALLOC_DEP)
443 LIBRARY_LDFLAGS = $(READLINE_LDFLAGS) $(HISTORY_LDFLAGS) $(GLOB_LDFLAGS) \
444 $(TILDE_LDFLAGS) $(MALLOC_LDFLAGS) $(SHLIB_LDFLAGS)
447 # The shell itself
450 # The main source code for the Bourne Again SHell.
451 CSOURCES = src/shell.c \
452 src/runner/eval.c \
453 src/lxrgmr/parse.y \
454 src/general.c \
455 src/lxrgmr/make_cmd.c \
456 src/runner/print_cmd.c \
457 src/lxrgmr/y.tab.c \
458 src/lxrgmr/dispose_cmd.c \
459 src/runner/execute_cmd.c \
460 src/var/variables.c \
461 $(GLOBC) \
462 src/version.c \
463 src/runner/expr.c \
464 src/lxrgmr/copy_cmd.c \
465 src/flags.c \
466 src/lxrgmr/subst.c \
467 src/hashcmd.c \
468 src/hashlib.c \
469 src/mailcheck.c \
470 src/test.c \
471 src/trap.c \
472 src/impl/alias.c \
473 src/jobs.c \
474 src/nojobs.c \
475 $(ALLOC_FILES) \
476 src/lxrgmr/braces.c \
477 src/input/input.c \
478 src/bushhist.c \
479 src/var/array.c \
480 src/var/arrayfunc.c \
481 src/var/assoc.c \
482 src/sig.c \
483 src/impl/pathexp.c \
484 src/runner/unwind_prot.c \
485 src/siglist.c \
486 src/input/bushline.c \
487 src/bracecomp.c \
488 src/error.c \
489 src/list.c \
490 src/impl/stringlib.c \
491 src/locale.c \
492 src/impl/findcmd.c \
493 src/redir.c \
494 src/pcomplete.c \
495 src/pcomplib.c \
496 src/syntax.c \
497 src/xmalloc.c
499 # mksyntax.c
501 HSOURCES = src/shell.h \
502 src/flags.h \
503 src/trap.h \
504 src/hashcmd.h \
505 src/hashlib.h \
506 src/jobs.h \
507 src/builtins.h \
508 src/general.h \
509 src/var/variables.h \
510 src/config.h \
511 $(ALLOC_HEADERS) \
512 src/impl/alias.h \
513 src/quit.h \
514 src/runner/unwind_prot.h \
515 src/syntax.h \
516 ${GRAM_H} \
517 src/lxrgmr/command.h \
518 src/input/input.h \
519 src/error.h \
520 src/bushansi.h \
521 src/lxrgmr/dispose_cmd.h \
522 src/lxrgmr/make_cmd.h \
523 src/lxrgmr/subst.h \
524 src/externs.h \
525 src/siglist.h \
526 src/bushhist.h \
527 src/input/bushline.h \
528 src/bushtypes.h \
529 src/var/array.h \
530 src/var/arrayfunc.h \
531 src/sig.h \
532 src/mailcheck.h \
533 src/bushintl.h \
534 src/bushjmp.h \
535 src/runner/execute_cmd.h \
536 src/lxrgmr/parser.h \
537 src/impl/pathexp.h \
538 src/pathnames.h \
539 src/pcomplete.h \
540 src/var/assoc.h \
541 $(BUSHINCFILES)
543 # config-bot.h config-top.h src/conftypes.h src/impl/findcmd.h src/lsignames.h src/patchlevel.h
544 # src/redir.h src/signames.h src/test.h src/version.h src/xmalloc.h src/lxrgmr/y.tab.h
547 SOURCES = $(CSOURCES) $(HSOURCES) $(BUILTIN_DEFS)
549 # headers in top-level source directory that get installed by install-headers
550 INSTALLED_HEADERS = shell.h command.h syntax.h general.h error.h \
551 variables.h array.h assoc.h arrayfunc.h quit.h dispose_cmd.h \
552 make_cmd.h subst.h sig.h externs.h builtins.h \
553 bushtypes.h src/xmalloc.h config-top.h config-bot.h \
554 bushintl.h bushansi.h bushjmp.h alias.h hashlib.h \
555 conftypes.h unwind_prot.h jobs.h siglist.h
556 INSTALLED_BUILTINS_HEADERS = bushgetopt.h common.h getopt.h
557 INSTALLED_INCFILES = posixstat.h ansi_stdlib.h filecntl.h posixdir.h \
558 memalloc.h stdc.h posixjmp.h posixwait.h posixtime.h systimes.h \
559 unionwait.h maxpath.h shtty.h typemax.h ocache.h chartypes.h gettext.h \
560 posixstat.h shmbchar.h shmbutil.h stat-time.h
562 # header files chosen based on running of configure
563 SIGNAMES_H = @SIGNAMES_H@
565 # object files chosen based on running of configure
566 GLOBO =
567 JOBS_O = .obj/@JOBS_O@
568 SIGLIST_O = @SIGLIST_O@
569 SIGNAMES_O = @SIGNAMES_O@
571 # Matching object files.
572 OBJECTS = .obj/shell.o \
573 .obj/runner/eval.o \
574 .obj/lxrgmr/y.tab.o \
575 .obj/general.o \
576 .obj/lxrgmr/make_cmd.o \
577 .obj/runner/print_cmd.o \
578 $(GLOBO) \
579 .obj/lxrgmr/dispose_cmd.o \
580 .obj/runner/execute_cmd.o \
581 .obj/var/variables.o \
582 .obj/lxrgmr/copy_cmd.o \
583 .obj/error.o \
584 .obj/runner/expr.o \
585 .obj/flags.o \
586 $(JOBS_O) \
587 .obj/lxrgmr/subst.o \
588 .obj/hashcmd.o \
589 .obj/hashlib.o \
590 .obj/mailcheck.o \
591 .obj/trap.o \
592 .obj/input/input.o \
593 .obj/runner/unwind_prot.o \
594 .obj/impl/pathexp.o \
595 .obj/sig.o \
596 .obj/test.o \
597 .obj/version.o \
598 .obj/impl/alias.o \
599 .obj/var/array.o \
600 .obj/var/arrayfunc.o \
601 .obj/var/assoc.o \
602 .obj/lxrgmr/braces.o \
603 .obj/bracecomp.o \
604 .obj/bushhist.o \
605 .obj/input/bushline.o \
606 $(SIGLIST_O) \
607 .obj/list.o \
608 .obj/impl/stringlib.o \
609 .obj/locale.o \
610 .obj/impl/findcmd.o \
611 .obj/redir.o \
612 .obj/pcomplete.o \
613 .obj/pcomplib.o \
614 .obj/syntax.o \
615 .obj/xmalloc.o \
616 $(SIGNAMES_O)
618 # Where the source code of the shell builtins resides.
619 BUILTIN_SRCDIR=$(srcdir)/builtins
620 DEFSRC=$(BUILTIN_SRCDIR)
621 BUILTIN_ABSSRC=${topdir}/builtins
622 DEFDIR = $(dot)/builtins
623 DEBUGGER_DIR = $(dot)/debugger
625 BUILTIN_DEFS = $(DEFSRC)/alias.def $(DEFSRC)/bind.def $(DEFSRC)/break.def \
626 $(DEFSRC)/builtin.def $(DEFSRC)/cd.def $(DEFSRC)/colon.def \
627 $(DEFSRC)/command.def ${DEFSRC}/complete.def \
628 $(DEFSRC)/caller.def $(DEFSRC)/declare.def \
629 $(DEFSRC)/echo.def $(DEFSRC)/enable.def $(DEFSRC)/eval.def \
630 $(DEFSRC)/exec.def $(DEFSRC)/exit.def $(DEFSRC)/fc.def \
631 $(DEFSRC)/fg_bg.def $(DEFSRC)/hash.def $(DEFSRC)/help.def \
632 $(DEFSRC)/history.def $(DEFSRC)/jobs.def $(DEFSRC)/kill.def \
633 $(DEFSRC)/let.def $(DEFSRC)/read.def $(DEFSRC)/return.def \
634 $(DEFSRC)/set.def $(DEFSRC)/setattr.def $(DEFSRC)/shift.def \
635 $(DEFSRC)/source.def $(DEFSRC)/suspend.def $(DEFSRC)/test.def \
636 $(DEFSRC)/times.def $(DEFSRC)/trap.def $(DEFSRC)/type.def \
637 $(DEFSRC)/ulimit.def $(DEFSRC)/umask.def $(DEFSRC)/wait.def \
638 $(DEFSRC)/getopts.def $(DEFSRC)/reserved.def \
639 $(DEFSRC)/pushd.def $(DEFSRC)/shopt.def $(DEFSRC)/printf.def \
640 $(DEFSRC)/mapfile.def
641 BUILTIN_C_SRC = $(DEFSRC)/mkbuiltins.c $(DEFSRC)/common.c \
642 $(DEFSRC)/evalstring.c $(DEFSRC)/evalfile.c \
643 $(DEFSRC)/bushgetopt.c $(GETOPT_SOURCE)
644 BUILTIN_C_OBJ = $(DEFDIR)/common.o $(DEFDIR)/evalstring.o \
645 $(DEFDIR)/evalfile.o $(DEFDIR)/bushgetopt.o
646 BUILTIN_OBJS = $(DEFDIR)/alias.o $(DEFDIR)/bind.o $(DEFDIR)/break.o \
647 $(DEFDIR)/builtin.o $(DEFDIR)/cd.o $(DEFDIR)/colon.o \
648 $(DEFDIR)/command.o $(DEFDIR)/caller.o $(DEFDIR)/declare.o \
649 $(DEFDIR)/echo.o $(DEFDIR)/enable.o $(DEFDIR)/eval.o \
650 $(DEFDIR)/exec.o $(DEFDIR)/exit.o $(DEFDIR)/fc.o \
651 $(DEFDIR)/fg_bg.o $(DEFDIR)/hash.o $(DEFDIR)/help.o \
652 $(DEFDIR)/history.o $(DEFDIR)/jobs.o $(DEFDIR)/kill.o \
653 $(DEFDIR)/let.o $(DEFDIR)/pushd.o $(DEFDIR)/read.o \
654 $(DEFDIR)/return.o $(DEFDIR)/shopt.o $(DEFDIR)/printf.o \
655 $(DEFDIR)/set.o $(DEFDIR)/setattr.o $(DEFDIR)/shift.o \
656 $(DEFDIR)/source.o $(DEFDIR)/suspend.o $(DEFDIR)/test.o \
657 $(DEFDIR)/times.o $(DEFDIR)/trap.o $(DEFDIR)/type.o \
658 $(DEFDIR)/ulimit.o $(DEFDIR)/umask.o $(DEFDIR)/wait.o \
659 $(DEFDIR)/getopts.o $(DEFDIR)/mapfile.o $(BUILTIN_C_OBJ)
660 GETOPT_SOURCE = $(DEFSRC)/getopt.c $(DEFSRC)/getopt.h
661 PSIZE_SOURCE = $(DEFSRC)/psize.sh $(DEFSRC)/psize.c
663 BUILTINS_LIBRARY = $(DEFDIR)/libbuiltins.a
664 BUILTINS_LIB = -lbuiltins
665 BUILTINS_LDFLAGS = -L$(DEFDIR)
666 BUILTINS_DEP = $(BUILTINS_LIBRARY)
668 # Documentation for the shell.
669 DOCSRC = $(srcdir)/doc/umdoc
670 DOCDIR = $(dot)/doc/umdoc
672 # Translations and other i18n support files
673 PO_SRC = $(srcdir)/po/
674 PO_DIR = $(dot)/po/
676 SIGNAMES_SUPPORT = $(SUPPORT_SRC)mksignames.c
678 SUPPORT_SRC = $(srcdir)/support/
679 SDIR = $(dot)/support
681 TESTS_SUPPORT = recho$(EXEEXT) zecho$(EXEEXT) printenv$(EXEEXT) xcase$(EXEEXT)
682 CREATED_SUPPORT = src/signames.h recho$(EXEEXT) zecho$(EXEEXT) \
683 printenv$(EXEEXT) tests/recho$(EXEEXT) tests/zecho$(EXEEXT) \
684 tests/printenv$(EXEEXT) xcase$(EXEEXT) tests/xcase$(EXEEXT) \
685 mksignames$(EXEEXT) src/lsignames.h \
686 mksyntax${EXEEXT} src/syntax.c $(VERSPROG) $(VERSOBJ) \
687 buildversion.o mksignames.o signames.o buildsignames.o
688 CREATED_CONFIGURE = config.h config.cache config.status config.log \
689 stamp-h po/POTFILES config.status.lineno
690 CREATED_MAKEFILES = Makefile builtins/Makefile doc/umdoc/Makefile \
691 lib/readline/Makefile lib/glob/Makefile \
692 lib/sh/Makefile lib/tilde/Makefile lib/malloc/Makefile \
693 lib/termcap/Makefile examples/loadables/Makefile \
694 examples/loadables/Makefile.inc \
695 examples/loadables/perl/Makefile support/Makefile \
696 lib/intl/Makefile po/Makefile po/Makefile.in
697 CREATED_HEADERS = src/signames.h config.h src/pathnames.h src/version.h \
698 src/lxrgmr/y.tab.h ${DEFDIR}/builtext.h
700 OTHER_DOCS = $(srcdir)/CHANGES $(srcdir)/COMPAT $(srcdir)/NEWS $(srcdir)/POSIX \
701 $(srcdir)/RBUSH $(srcdir)/README
702 OTHER_INSTALLED_DOCS = CHANGES COMPAT NEWS POSIX RBUSH README
704 LOADABLES_DIR = ${top_builddir}/examples/loadables
706 # Keep GNU Make from exporting the entire environment for small machines.
707 .NOEXPORT:
709 .made: $(Program) bushbug $(SDIR)/man2html$(EXEEXT)
710 @echo "$(Program) last made for a $(Machine) running $(OS)" >.made
712 $(Program): .build $(OBJECTS) $(BUILTINS_DEP) $(LIBDEP)
713 $(RM) $@
714 $(PURIFY) $(CC) $(BUILTINS_LDFLAGS) $(LIBRARY_LDFLAGS) $(LDFLAGS) -o $(Program) $(OBJECTS) $(LIBS)
715 ls -l $(Program)
716 -$(SIZE) $(Program)
718 .build: $(SOURCES) config.h Makefile src/version.h $(VERSPROG)
719 @echo
720 @echo " ***********************************************************"
721 @echo " * *"
722 @echo " * `$(BUILD_DIR)/$(VERSPROG) -l`"
723 @echo " * *"
724 @echo " ***********************************************************"
725 @echo
727 bushbug: $(SDIR)/bushbug.sh $(VERSPROG)
728 @sed -e "s%!PATCHLEVEL%$(PatchLevel)%" \
729 $(SDIR)/bushbug.sh > $@
730 @chmod a+rx bushbug
732 strip: $(Program) .made
733 $(STRIP) $(Program)
734 ls -l $(Program)
735 -$(SIZE) $(Program)
737 lint:
738 ${MAKE} ${MFLAGS} CFLAGS='${GCC_LINT_FLAGS}' .made
740 asan:
741 ${MAKE} ${MFLAGS} ADDON_CFLAGS='${ASAN_XCFLAGS}' ADDON_LDFLAGS='${ASAN_XLDFLAGS}' .made
743 # cheating
744 gcov:
745 ${MAKE} ${MFLAGS} CFLAGS=-g ADDON_CFLAGS='${GCOV_XCFLAGS}' ADDON_LDFLAGS='${GCOV_XLDFLAGS}' .made
748 # have to make this separate because making tests depend on $(PROGRAM)
749 asan-tests: asan $(TESTS_SUPPORT)
750 @-test -d tests || mkdir tests
751 @cp $(TESTS_SUPPORT) tests
752 @( cd $(srcdir)/tests && \
753 BUILD_DIR=$(BUILD_DIR) PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} )
755 profiling-tests: ${PROGRAM}
756 @test "X$$PROFILE_FLAGS" == "X" && { echo "profiling-tests: must be built with profiling enabled" >&2; exit 1; }
757 @${MAKE} ${MFLAGS} tests TESTSCRIPT=run-gprof
759 src/version.h: $(SOURCES) config.h Makefile src/patchlevel.h
760 PACKAGE_NAME=$(PACKAGE_NAME) $(SHELL) $(SUPPORT_SRC)mkversion.sh -b -S ${topdir} -s $(RELSTATUS) -d $(Version) -o src/newversion.h \
761 && mv src/newversion.h src/version.h
763 bushversion$(EXEEXT): buildversion.o $(SUPPORT_SRC)bushversion.c
764 echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
765 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)bushversion.c buildversion.o ${LIBS_FOR_BUILD}
767 buildversion.o: $(srcdir)/src/version.c
768 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -c -o $@ $(srcdir)/src/version.c
770 buildversion.o: src/bushintl.h $(BUSHINCDIR)/gettext.h
771 buildversion.o: src/version.h src/patchlevel.h src/conftypes.h
773 # old rules
774 GRAM_H = parser-built
775 .obj/lxrgmr/y.tab.o: src/lxrgmr/y.tab.h src/lxrgmr/y.tab.c ${GRAM_H} src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/input/input.h
776 ${GRAM_H}: src/lxrgmr/y.tab.h
777 @-if test -f src/lxrgmr/y.tab.h ; then \
778 cmp -s $@ src/lxrgmr/y.tab.h 2>/dev/null || cp -p src/lxrgmr/y.tab.h $@; \
781 src/lxrgmr/y.tab.c: src/lxrgmr/parse.y
782 # -if test -f src/lxrgmr/y.tab.h; then mv -f src/lxrgmr/y.tab.h old-src/lxrgmr/y.tab.h; fi
783 $(YACC) -d $(srcdir)/src/lxrgmr/parse.y -o $@
784 touch parser-built
785 # -if cmp -s old-src/lxrgmr/y.tab.h src/lxrgmr/y.tab.h; then mv old-src/lxrgmr/y.tab.h src/lxrgmr/y.tab.h; else cp -p src/lxrgmr/y.tab.h ${GRAM_H}; fi
787 src/lxrgmr/y.tab.h: src/lxrgmr/y.tab.c
788 @true
791 # Subdirs will often times want src/version.h, so they'll change back up to
792 # the top level and try to create it. This causes parallel build issues
793 # so just force top level sanity before we descend.
794 $(LIBDEP): .build
795 #$(LIBDEP): src/version.h
797 $(READLINE_LIBRARY): config.h $(READLINE_SOURCE)
798 @echo making $@ in ${RL_LIBDIR}
799 @( { test "${RL_LIBDIR}" = "${libdir}" && exit 0; } || \
800 cd ${RL_LIBDIR} && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libreadline.a) || exit 1
802 $(HISTORY_LIBRARY): config.h $(HISTORY_SOURCE) $(READLINE_DEP)
803 @echo making $@ in ${HIST_LIBDIR}
804 @( { test "${HIST_LIBDIR}" = "${libdir}" && exit 0; } || \
805 cd ${HIST_LIBDIR} && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libhistory.a) || exit 1
807 $(GLOB_LIBRARY): config.h $(GLOB_SOURCE)
808 @echo making $@ in ${GLOB_LIBDIR}
809 @(cd ${GLOB_LIBDIR} && \
810 $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libglob.a) || exit 1
812 $(TILDE_LIBRARY): config.h $(TILDE_SOURCE)
813 @echo making $@ in ${TILDE_LIBDIR}
814 @(cd ${TILDE_LIBDIR} && \
815 $(MAKE) $(MFLAGS) libtilde.a) || exit 1
817 $(TERMCAP_LIBRARY): config.h ${TERMCAP_SOURCE}
818 @echo making $@ in ${TERM_LIBDIR}
819 @(cd ${TERM_LIBDIR} && \
820 $(MAKE) $(MFLAGS) libtermcap.a) || exit 1
822 $(SHLIB_LIBRARY): config.h ${SHLIB_SOURCE}
823 @echo making $@ in ${SH_LIBDIR}
824 @(cd ${SH_LIBDIR} && \
825 $(MAKE) $(MFLAGS) DEBUG=${DEBUG} ${SHLIB_LIBNAME}) || exit 1
827 ${INTL_LIBRARY}: config.h ${INTL_LIBDIR}/Makefile
828 @echo making $@ in ${INTL_LIBDIR}
829 @(cd ${INTL_LIBDIR} && \
830 $(MAKE) $(MFLAGS) XCFLAGS="${LOCAL_CFLAGS}" all) || exit 1
832 ${LIBINTL_H}: ${INTL_DEP}
834 signames.o: $(SUPPORT_SRC)signames.c
835 $(RM) $@
836 $(CC) $(CCFLAGS) -c $(SUPPORT_SRC)signames.c
838 buildsignames.o: $(SUPPORT_SRC)signames.c
839 $(RM) $@
840 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -o $@ -c $(SUPPORT_SRC)signames.c
842 mksignames.o: $(SUPPORT_SRC)mksignames.c
843 $(RM) $@
844 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -c $(SUPPORT_SRC)mksignames.c
846 mksignames$(EXEEXT): mksignames.o buildsignames.o
847 $(RM) $@
848 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ mksignames.o buildsignames.o ${LIBS_FOR_BUILD}
850 mksyntax$(EXEEXT): ${srcdir}/tools/mksyntax.c config.h src/syntax.h ${BUSHINCDIR}/chartypes.h src/bushansi.h
851 $(RM) $@
852 ${CC_FOR_BUILD} ${CCFLAGS_FOR_BUILD} ${LDFLAGS_FOR_BUILD} -o $@ ${srcdir}/tools/mksyntax.c ${LIBS_FOR_BUILD}
854 # make a list of signals for the local system -- this is done when we're
855 # *not* cross-compiling
856 src/lsignames.h: mksignames$(EXEEXT)
857 $(RM) $@
858 ./mksignames$(EXEEXT) $@
860 # copy the correct signames header file to src/signames.h
861 src/signames.h: $(SIGNAMES_H)
862 if cmp -s $(SIGNAMES_H) $@ ; then :; else $(RM) $@ ; $(CP) $(SIGNAMES_H) $@ ; fi
864 src/syntax.c: mksyntax${EXEEXT} $(srcdir)/src/syntax.h
865 $(RM) $@
866 ./mksyntax$(EXEEXT) -o $@
868 $(BUILTINS_LIBRARY): $(BUILTIN_DEFS) $(BUILTIN_C_SRC) config.h ${BUSHINCDIR}/memalloc.h $(DEFDIR)/builtext.h src/version.h
869 @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} targets ) || exit 1
871 # these require special rules to circumvent make builtin rules
872 ${DEFDIR}/common.o: $(BUILTIN_SRCDIR)/common.c
873 @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} common.o) || exit 1
875 ${DEFDIR}/bushgetopt.o: $(BUILTIN_SRCDIR)/bushgetopt.c
876 @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} bushgetopt.o) || exit 1
878 ${DEFDIR}/builtext.h: $(BUILTIN_DEFS)
879 @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) builtext.h ) || exit 1
881 ${DEFDIR}/pipesize.h:
882 @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) pipesize.h ) || exit 1
884 $(SDIR)/man2html$(EXEEXT): ${SUPPORT_SRC}/man2html.c
885 @(cd $(SDIR) && $(MAKE) $(MFLAGS) all ) || exit 1
887 # For the justification of the following Makefile rules, see node
888 # `Automatic Remaking' in GNU Autoconf documentation.
890 Makefile makefile: config.status $(srcdir)/Makefile.in
891 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
893 Makefiles makefiles: config.status $(srcdir)/Makefile.in
894 @for mf in $(CREATED_MAKEFILES); do \
895 CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status || exit 1; \
896 done
898 config.h: stamp-h
900 stamp-h: config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h
901 CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status
903 config.status: $(srcdir)/configure
904 $(SHELL) ./config.status --recheck
906 src/pathnames.h: Makefile $(srcdir)/src/pathnames.h.in
907 @sed -e 's|@DEBUGGER_START_FILE\@|${DEBUGGER_START_FILE}|g' $(srcdir)/src/pathnames.h.in > pathnames.tmp
908 @if test -f $@; then \
909 cmp -s pathnames.tmp $@ || mv pathnames.tmp $@; \
910 else \
911 mv pathnames.tmp $@; \
913 @${RM} pathnames.tmp
915 # comment out for distribution
916 $(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/aclocal.m4 $(srcdir)/config.h.in
917 cd $(srcdir) && autoconf
919 # for chet
920 reconfig: force
921 sh $(srcdir)/configure -C
923 loadables:
924 cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) all
926 #newversion: mkversion
927 # $(RM) .build
928 # ./mkversion -dir $(srcdir) -dist
929 # mv -f src/newversion.h src/version.h
930 # $(MAKE) -f $(srcdir)/Makefile $(MFLAGS) srcdir=$(srcdir)
932 doc documentation: force
933 @(cd $(DOCDIR) ; $(MAKE) $(MFLAGS) )
935 info dvi ps: force
936 @(cd $(DOCDIR) ; $(MAKE) $(MFLAGS) CFLAGS='$(CCFLAGS)' $@ )
938 force:
940 # unused
941 TAGS: $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE)
942 etags $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE)
944 tags: $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE)
945 ctags -x $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) > $@
947 # Targets that actually do things not part of the build
949 installdirs:
950 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(bindir)
951 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(man1dir)
952 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(infodir)
953 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(docdir)
954 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
956 install: .made installdirs
957 $(INSTALL_PROGRAM) $(INSTALLMODE) $(Program) $(DESTDIR)$(bindir)/$(Program)
958 $(INSTALL_SCRIPT) $(INSTALLMODE2) bushbug $(DESTDIR)$(bindir)/bushbug
959 $(INSTALL_DATA) $(OTHER_DOCS) $(DESTDIR)$(docdir)
960 -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \
961 man1dir=$(man1dir) man1ext=$(man1ext) \
962 man3dir=$(man3dir) man3ext=$(man3ext) \
963 infodir=$(infodir) htmldir=$(htmldir) DESTDIR=$(DESTDIR) $@ )
964 -( cd $(DEFDIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
965 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
966 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
968 install-strip:
969 $(MAKE) $(MFLAGS) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \
970 prefix=${prefix} exec_prefix=${exec_prefix} \
971 DESTDIR=$(DESTDIR) install
973 install-headers-dirs:
974 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(headersdir)
975 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(headersdir)/builtins
976 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(headersdir)/include
977 @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(pkgconfigdir)
979 install-headers: install-headers-dirs
980 @for hf in $(INSTALLED_HEADERS) ; do \
981 ${INSTALL_DATA} $(srcdir)/"$$hf" $(DESTDIR)$(headersdir)/$$hf || exit 1; \
982 done
983 @for hf in $(INSTALLED_INCFILES) ; do \
984 ${INSTALL_DATA} $(BUSHINCDIR)/"$$hf" $(DESTDIR)$(headersdir)/include/$$hf || exit 1; \
985 done
986 @for hf in $(INSTALLED_BUILTINS_HEADERS) ; do \
987 ${INSTALL_DATA} $(BUILTIN_SRCDIR)/"$$hf" $(DESTDIR)$(headersdir)/builtins/$$hf || exit 1; \
988 done
989 @for hf in $(CREATED_HEADERS) ; do \
990 if test -f $(BUILD_DIR)/"$$hf" ; then \
991 ${INSTALL_DATA} $(BUILD_DIR)/"$$hf" $(DESTDIR)$(headersdir)/$$hf || exit 1; \
992 else \
993 ${INSTALL_DATA} $(srcdir)/"$$hf" $(DESTDIR)$(headersdir)/$$hf || exit 1; \
994 fi ; \
995 done
996 -$(INSTALL_DATA) $(SDIR)/bush.pc $(DESTDIR)$(pkgconfigdir)/bush.pc
998 uninstall-headers:
999 -( cd $(DESTDIR)$(headersdir) && $(RM) $(INSTALLED_HEADERS) )
1000 -( cd $(DESTDIR)$(headersdir)/include && $(RM) $(INSTALLED_INCFILES) )
1001 -( cd $(DESTDIR)$(headersdir)/builtins && $(RM) $(INSTALLED_BUILTINS_HEADERS) )
1002 -( cd $(DESTDIR)$(headersdir) && $(RM) $(CREATED_HEADERS) )
1003 -( $(RM) $(DESTDIR)$(pkgconfigdir)/bush.pc )
1005 uninstall: .made
1006 $(RM) $(DESTDIR)$(bindir)/$(Program) $(DESTDIR)$(bindir)/bushbug
1007 -( cd $(DESTDIR)$(docdir) && ${RM} ${OTHER_INSTALLED_DOCS} )
1008 -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \
1009 man1dir=$(man1dir) man1ext=$(man1ext) \
1010 man3dir=$(man3dir) man3ext=$(man3ext) \
1011 infodir=$(infodir) htmldir=$(htmldir) DESTDIR=$(DESTDIR) $@ )
1012 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1013 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1015 .PHONY: basic-clean clean realclean maintainer-clean distclean mostlyclean maybe-clean
1017 LIB_SUBDIRS = ${RL_LIBDIR} ${HIST_LIBDIR} ${TERM_LIBDIR} ${GLOB_LIBDIR} \
1018 ${INTL_LIBDIR} ${TILDE_LIBDIR} ${ALLOC_LIBDIR} ${SH_LIBDIR}
1020 basic-clean:
1021 $(RM) .obj -rf
1022 $(RM) $(OBJECTS) $(Program) bushbug
1023 $(RM) .build .made src/version.h mksignames bushversion
1025 clean: basic-clean
1026 ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ )
1027 ( cd builtins && $(MAKE) $(MFLAGS) $@ )
1028 -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ )
1029 -for libdir in ${LIB_SUBDIRS}; do \
1030 (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\
1031 done
1032 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1033 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1034 $(RM) $(CREATED_SUPPORT)
1036 mostlyclean: basic-clean
1037 ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ )
1038 ( cd builtins && $(MAKE) $(MFLAGS) $@ )
1039 -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ )
1040 -for libdir in ${LIB_SUBDIRS}; do \
1041 (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\
1042 done
1043 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1044 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1046 distclean: basic-clean maybe-clean
1047 ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ )
1048 ( cd builtins && $(MAKE) $(MFLAGS) $@ )
1049 -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ )
1050 -for libdir in ${LIB_SUBDIRS}; do \
1051 (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\
1052 done
1053 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1054 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1055 $(RM) $(CREATED_CONFIGURE) tags TAGS
1056 $(RM) $(CREATED_SUPPORT) Makefile $(CREATED_MAKEFILES) src/pathnames.h
1058 maintainer-clean: basic-clean
1059 @echo This command is intended for maintainers to use.
1060 @echo It deletes files that may require special tools to rebuild.
1061 $(RM) src/lxrgmr/y.tab.c src/lxrgmr/y.tab.h parser-built tags TAGS
1062 ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ )
1063 ( cd builtins && $(MAKE) $(MFLAGS) $@ )
1064 ( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ )
1065 -for libdir in ${LIB_SUBDIRS}; do \
1066 (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\
1067 done
1068 -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1069 -( cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ )
1070 $(RM) $(CREATED_CONFIGURE) $(CREATED_MAKEFILES)
1071 $(RM) $(CREATED_SUPPORT) Makefile src/pathnames.h
1073 maybe-clean:
1074 -if test X"`cd $(topdir) && pwd -P`" != X"`cd $(BUILD_DIR) && pwd -P`" ; then \
1075 $(RM) parser-built src/lxrgmr/y.tab.c src/lxrgmr/y.tab.h ; \
1078 recho$(EXEEXT): $(SUPPORT_SRC)recho.c
1079 @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)recho.c ${LIBS_FOR_BUILD}
1081 zecho$(EXEEXT): $(SUPPORT_SRC)zecho.c
1082 @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)zecho.c ${LIBS_FOR_BUILD}
1084 printenv$(EXEEXT): $(SUPPORT_SRC)printenv.c
1085 @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)printenv.c ${LIBS_FOR_BUILD}
1087 xcase$(EXEEXT): $(SUPPORT_SRC)xcase.c
1088 @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)xcase.c ${LIBS_FOR_BUILD}
1090 test tests check: force $(Program) $(TESTS_SUPPORT)
1091 @-test -d tests || mkdir tests
1092 @cp $(TESTS_SUPPORT) tests
1093 @( cd $(srcdir)/tests && \
1094 BUILD_DIR=$(BUILD_DIR) PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} )
1096 symlinks:
1097 $(SHELL) $(SUPPORT_SRC)fixlinks -s $(srcdir)
1099 dist: force
1100 @echo Bush distributions are created using $(srcdir)/support/mkdist.
1101 @echo Here is a sample of the necessary commands:
1102 @echo $(Program) $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r ${PACKAGE} -t $(PACKAGE_VERSION)
1104 xdist: force
1105 ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ )
1106 ( cd po && $(MAKE) $(MFLAGS) $@ )
1108 depend: depends
1110 depends: force
1111 @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1112 $(Program) $(SUPPORT_SRC)mkdep -c ${CC} -- ${CCFLAGS} ${CSOURCES}
1114 #### PRIVATE TARGETS ####
1115 hashtest: src/hashlib.c
1116 $(CC) -DTEST_HASHING $(CCFLAGS) $(TEST_NBUCKETS) -o $@ $(srcdir)/src/hashlib.c xmalloc.o $(INTL_LIB) $(MALLOC_LIBRARY)
1118 ############################ DEPENDENCIES ###############################
1120 # Files that depend on the definitions in config-top.h, which are not meant
1121 # to be changed
1122 .obj/var/array.o: $(srcdir)/config-top.h
1123 .obj/bushhist.o: $(srcdir)/config-top.h
1124 .obj/shell.o: $(srcdir)/config-top.h
1125 .obj/input/input.o: $(srcdir)/config-top.h
1126 .obj/lxrgmr/y.tab.o: $(srcdir)/config-top.h
1127 .obj/jobs.o: $(srcdir)/config-top.h
1128 .obj/nojobs.o: $(srcdir)/config-top.h
1129 .obj/runner/execute_cmd.o: $(srcdir)/config-top.h
1130 .obj/var/variables.o: $(srcdir)/config-top.h
1131 .obj/impl/findcmd.o: $(srcdir)/config-top.h
1132 .obj/lxrgmr/subst.o: $(srcdir)/config-top.h
1133 builtins/cd.o: $(srcdir)/config-top.h
1134 builtins/command.o: $(srcdir)/config-top.h
1135 builtins/common.o: $(srcdir)/config-top.h
1136 builtins/declare.o: $(srcdir)/config-top.h
1137 builtins/break.o: $(srcdir)/config-top.h
1138 builtins/echo.o: $(srcdir)/config-top.h
1139 builtins/evalstring.o: $(srcdir)/config-top.h
1140 builtins/exit.o: $(srcdir)/config-top.h
1141 builtins/kill.o: $(srcdir)/config-top.h
1142 builtins/shopt.o: $(srcdir)/config-top.h
1144 # XXX
1145 ${SH_LIBDIR}/tmpfile.o: $(srcdir)/config-top.h
1147 # shell basics
1148 .obj/lxrgmr/copy_cmd.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1149 .obj/lxrgmr/copy_cmd.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1150 .obj/lxrgmr/copy_cmd.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1151 .obj/lxrgmr/copy_cmd.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1152 .obj/lxrgmr/copy_cmd.o: src/bushansi.h src/var/assoc.h $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h
1153 .obj/lxrgmr/dispose_cmd.o: src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1154 .obj/lxrgmr/dispose_cmd.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h
1155 .obj/lxrgmr/dispose_cmd.o: src/error.h src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1156 .obj/lxrgmr/dispose_cmd.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1157 .obj/lxrgmr/dispose_cmd.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1158 .obj/lxrgmr/dispose_cmd.o: ${BUSHINCDIR}/ocache.h
1159 .obj/lxrgmr/dispose_cmd.o: src/var/assoc.h ${BUSHINCDIR}/chartypes.h
1160 .obj/error.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/flags.h ${BUSHINCDIR}/stdc.h src/error.h
1161 .obj/error.o: src/lxrgmr/command.h src/general.h src/xmalloc.h src/externs.h src/input/input.h src/bushhist.h
1162 .obj/error.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1163 .obj/error.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1164 .obj/error.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1165 .obj/error.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/runner/execute_cmd.h
1166 .obj/error.o: src/input/input.h src/runner/execute_cmd.h
1167 .obj/error.o: $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h src/var/assoc.h
1168 .obj/runner/eval.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/trap.h src/flags.h ${DEFSRC}/common.h
1169 .obj/runner/eval.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1170 .obj/runner/eval.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1171 .obj/runner/eval.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1172 .obj/runner/eval.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1173 .obj/runner/eval.o: src/input/input.h src/runner/execute_cmd.h
1174 .obj/runner/eval.o: src/bushhist.h src/var/assoc.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1175 .obj/runner/execute_cmd.o: config.h src/bushtypes.h ${BUSHINCDIR}/filecntl.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1176 .obj/runner/execute_cmd.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1177 .obj/runner/execute_cmd.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1178 .obj/runner/execute_cmd.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1179 .obj/runner/execute_cmd.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1180 .obj/runner/execute_cmd.o: ${BUSHINCDIR}/memalloc.h ${GRAM_H} src/flags.h src/builtins.h src/jobs.h src/quit.h src/siglist.h
1181 .obj/runner/execute_cmd.o: src/runner/execute_cmd.h src/impl/findcmd.h src/redir.h src/trap.h src/test.h src/impl/pathexp.h
1182 .obj/runner/execute_cmd.o: $(DEFSRC)/common.h ${DEFDIR}/builtext.h ${GLOB_LIBSRC}/strmatch.h
1183 .obj/runner/execute_cmd.o: ${BUSHINCDIR}/posixtime.h ${BUSHINCDIR}/chartypes.h
1184 .obj/runner/execute_cmd.o: $(DEFSRC)/getopt.h
1185 .obj/runner/execute_cmd.o: src/bushhist.h src/input/input.h ${GRAM_H} src/var/assoc.h src/hashcmd.h src/impl/alias.h
1186 .obj/runner/execute_cmd.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/posixwait.h
1187 .obj/runner/expr.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1188 .obj/runner/expr.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1189 .obj/runner/expr.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1190 .obj/runner/expr.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1191 .obj/runner/expr.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/flags.h src/runner/execute_cmd.h
1192 .obj/runner/expr.o: ${BUSHINCDIR}/chartypes.h
1193 .obj/runner/expr.o: src/var/assoc.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/typemax.h
1194 .obj/impl/findcmd.o: config.h src/bushtypes.h ${BUSHINCDIR}/filecntl.h ${BUSHINCDIR}/posixstat.h src/bushansi.h
1195 .obj/impl/findcmd.o: ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/memalloc.h src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h
1196 .obj/impl/findcmd.o: ${BUSHINCDIR}/stdc.h src/error.h src/general.h src/xmalloc.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h
1197 .obj/impl/findcmd.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1198 .obj/impl/findcmd.o: src/flags.h src/hashlib.h src/impl/pathexp.h src/hashcmd.h src/runner/execute_cmd.h
1199 .obj/impl/findcmd.o: ${BUSHINCDIR}/chartypes.h
1200 .obj/flags.o: config.h src/flags.h
1201 .obj/flags.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1202 .obj/flags.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1203 .obj/flags.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h src/runner/execute_cmd.h
1204 .obj/flags.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/bushhist.h
1205 .obj/flags.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/bushansi.h src/var/assoc.h
1206 .obj/general.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h ${BUSHINCDIR}/filecntl.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1207 .obj/general.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1208 .obj/general.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1209 .obj/general.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1210 .obj/general.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/flags.h src/lxrgmr/parser.h
1211 .obj/general.o: src/impl/pathexp.h
1212 .obj/general.o: ${BUSHINCDIR}/maxpath.h ${BUSHINCDIR}/posixtime.h
1213 .obj/general.o: ${BUSHINCDIR}/chartypes.h
1214 .obj/general.o: src/trap.h src/input/input.h src/var/assoc.h src/test.h src/impl/findcmd.h
1215 .obj/general.o: ${BUSHINCDIR}/ocache.h $(DEFSRC)/common.h
1216 .obj/hashcmd.o: config.h ${BUSHINCDIR}/posixstat.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1217 .obj/hashcmd.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1218 .obj/hashcmd.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashcmd.h
1219 .obj/hashcmd.o: src/runner/execute_cmd.h src/impl/findcmd.h ${BUSHINCDIR}/stdc.h src/pathnames.h src/hashlib.h
1220 .obj/hashcmd.o: src/quit.h src/sig.h src/flags.h
1221 .obj/hashlib.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1222 .obj/hashlib.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1223 .obj/hashlib.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1224 .obj/hashlib.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1225 .obj/hashlib.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1226 .obj/hashlib.o: src/var/assoc.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1227 .obj/input/input.o: config.h src/bushtypes.h ${BUSHINCDIR}/filecntl.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1228 .obj/input/input.o: src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/general.h src/xmalloc.h src/input/input.h src/error.h src/externs.h
1229 .obj/input/input.o: src/quit.h src/shell.h src/pathnames.h
1230 .obj/list.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1231 .obj/list.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1232 .obj/list.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1233 .obj/list.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1234 .obj/list.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/bushansi.h src/var/assoc.h
1235 .obj/locale.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1236 .obj/locale.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1237 .obj/locale.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1238 .obj/locale.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1239 .obj/locale.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1240 .obj/locale.o: ${BUSHINCDIR}/chartypes.h
1241 .obj/locale.o: src/input/input.h src/var/assoc.h ${BUSHINCDIR}/ocache.h
1242 .obj/mailcheck.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1243 .obj/mailcheck.o: ${BUSHINCDIR}/posixtime.h
1244 .obj/mailcheck.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1245 .obj/mailcheck.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1246 .obj/mailcheck.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1247 .obj/mailcheck.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1248 .obj/mailcheck.o: src/runner/execute_cmd.h src/mailcheck.h
1249 .obj/mailcheck.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/var/assoc.h
1250 .obj/lxrgmr/make_cmd.o: config.h src/bushtypes.h ${BUSHINCDIR}/filecntl.h src/bushansi.h
1251 .obj/lxrgmr/make_cmd.o: src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/general.h src/xmalloc.h src/error.h src/flags.h src/lxrgmr/make_cmd.h
1252 .obj/lxrgmr/make_cmd.o: src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h src/lxrgmr/subst.h src/input/input.h src/externs.h
1253 .obj/lxrgmr/make_cmd.o: src/jobs.h src/quit.h src/sig.h src/siglist.h src/syntax.h src/lxrgmr/dispose_cmd.h src/lxrgmr/parser.h
1254 .obj/lxrgmr/make_cmd.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h ${BUSHINCDIR}/ocache.h
1255 .obj/lxrgmr/make_cmd.o: src/shell.h src/runner/execute_cmd.h src/pathnames.h
1256 .obj/lxrgmr/make_cmd.o: $(BUSHINCDIR)/maxpath.h src/lxrgmr/make_cmd.c src/var/assoc.h $(BUSHINCDIR)/chartypes.h
1257 .obj/lxrgmr/make_cmd.o: src/runner/unwind_prot.h $(BUSHINCDIR)/posixjmp.h src/bushjmp.h $(BUSHINCDIR)/posixwait.h
1258 .obj/lxrgmr/y.tab.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/memalloc.h
1259 .obj/lxrgmr/y.tab.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1260 .obj/lxrgmr/y.tab.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1261 .obj/lxrgmr/y.tab.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1262 .obj/lxrgmr/y.tab.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/test.h .obj/runner/execute_cmd.o
1263 .obj/lxrgmr/y.tab.o: src/trap.h src/flags.h src/lxrgmr/parser.h src/input/input.h src/mailcheck.h $(DEFSRC)/common.h
1264 .obj/lxrgmr/y.tab.o: $(DEFDIR)/builtext.h src/input/bushline.h src/bushhist.h src/jobs.h src/siglist.h src/impl/alias.h
1265 .obj/lxrgmr/y.tab.o: ${BUSHINCDIR}/typemax.h src/var/assoc.h ${BUSHINCDIR}/ocache.h
1266 .obj/lxrgmr/y.tab.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h ${BUSHINCDIR}/posixwait.h
1267 .obj/impl/pathexp.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1268 .obj/impl/pathexp.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1269 .obj/impl/pathexp.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1270 .obj/impl/pathexp.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1271 .obj/impl/pathexp.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1272 .obj/impl/pathexp.o: src/impl/pathexp.h src/flags.h
1273 .obj/impl/pathexp.o: $(GLOB_LIBSRC)/glob.h $(GLOB_LIBSRC)/strmatch.h
1274 .obj/impl/pathexp.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1275 .obj/impl/pathexp.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/var/assoc.h
1276 .obj/runner/print_cmd.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1277 .obj/runner/print_cmd.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1278 .obj/runner/print_cmd.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1279 .obj/runner/print_cmd.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1280 .obj/runner/print_cmd.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1281 .obj/runner/print_cmd.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1282 .obj/runner/print_cmd.o: ${GRAM_H} $(DEFSRC)/common.h
1283 .obj/runner/print_cmd.o: src/flags.h src/input/input.h src/var/assoc.h
1284 .obj/runner/print_cmd.o: $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h
1285 .obj/redir.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/filecntl.h
1286 .obj/redir.o: ${BUSHINCDIR}/memalloc.h src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1287 .obj/redir.o: src/general.h src/xmalloc.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h
1288 .obj/redir.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1289 .obj/redir.o: src/flags.h src/runner/execute_cmd.h src/redir.h src/input/input.h
1290 .obj/redir.o: ${DEFDIR}/pipesize.h
1291 .obj/redir.o: src/trap.h src/var/assoc.h $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h
1292 .obj/shell.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/filecntl.h
1293 .obj/shell.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1294 .obj/shell.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1295 .obj/shell.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1296 .obj/shell.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1297 .obj/shell.o: src/flags.h src/trap.h src/mailcheck.h src/builtins.h $(DEFSRC)/common.h
1298 .obj/shell.o: src/jobs.h src/siglist.h src/input/input.h src/runner/execute_cmd.h src/impl/findcmd.h src/bushhist.h src/input/bushline.h
1299 .obj/shell.o: ${GLOB_LIBSRC}/strmatch.h ${BUSHINCDIR}/posixtime.h ${BUSHINCDIR}/posixwait.h
1300 .obj/shell.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/var/assoc.h src/impl/alias.h
1301 .obj/sig.o: config.h src/bushtypes.h
1302 .obj/sig.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1303 .obj/sig.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1304 .obj/sig.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1305 .obj/sig.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/runner/execute_cmd.h
1306 .obj/sig.o: src/jobs.h src/siglist.h src/trap.h $(DEFSRC)/common.h src/input/bushline.h src/bushhist.h
1307 .obj/sig.o: ${DEFDIR}/builtext.h
1308 .obj/siglist.o: config.h src/bushtypes.h src/siglist.h src/trap.h
1309 .obj/impl/stringlib.o: src/bushtypes.h ${BUSHINCDIR}/chartypes.h
1310 .obj/impl/stringlib.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1311 .obj/impl/stringlib.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1312 .obj/impl/stringlib.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1313 .obj/impl/stringlib.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1314 .obj/impl/stringlib.o: src/bushansi.h src/impl/pathexp.h src/var/assoc.h $(BUSHINCDIR)/ocache.h
1315 .obj/impl/stringlib.o: ${GLOB_LIBSRC}/glob.h ${GLOB_LIBSRC}/strmatch.h
1316 .obj/lxrgmr/subst.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/posixstat.h
1317 .obj/lxrgmr/subst.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1318 .obj/lxrgmr/subst.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1319 .obj/lxrgmr/subst.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1320 .obj/lxrgmr/subst.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1321 .obj/lxrgmr/subst.o: src/flags.h src/jobs.h src/siglist.h src/runner/execute_cmd.h ${BUSHINCDIR}/filecntl.h src/trap.h src/impl/pathexp.h
1322 .obj/lxrgmr/subst.o: src/mailcheck.h src/input/input.h $(DEFSRC)/getopt.h $(DEFSRC)/common.h
1323 .obj/lxrgmr/subst.o: src/input/bushline.h src/bushhist.h ${GLOB_LIBSRC}/strmatch.h
1324 .obj/lxrgmr/subst.o: ${BUSHINCDIR}/chartypes.h
1325 .obj/lxrgmr/subst.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1326 .obj/lxrgmr/subst.o: ${DEFDIR}/builtext.h
1327 .obj/test.o: src/bushtypes.h ${BUSHINCDIR}/posixstat.h ${BUSHINCDIR}/filecntl.h
1328 .obj/test.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1329 .obj/test.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1330 .obj/test.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1331 .obj/test.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/test.h
1332 .obj/test.o: ${BUSHINCDIR}/stat-time.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1333 .obj/test.o: $(GLOB_LIBSRC)/strmatch.h src/bushansi.h src/impl/pathexp.h src/var/assoc.h
1334 .obj/test.o: ${DEFSRC}/common.h
1335 .obj/trap.o: config.h src/bushtypes.h src/trap.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1336 .obj/trap.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1337 .obj/trap.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1338 .obj/trap.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h src/lxrgmr/parser.h
1339 .obj/trap.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/runner/execute_cmd.h
1340 .obj/trap.o: src/signames.h $(DEFSRC)/common.h
1341 .obj/trap.o: ${DEFDIR}/builtext.h src/jobs.h
1342 .obj/runner/unwind_prot.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h
1343 .obj/runner/unwind_prot.o: src/general.h src/xmalloc.h src/runner/unwind_prot.h src/quit.h src/sig.h
1344 .obj/runner/unwind_prot.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/error.h
1345 .obj/var/variables.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1346 .obj/var/variables.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1347 .obj/var/variables.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1348 .obj/var/variables.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1349 .obj/var/variables.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1350 .obj/var/variables.o: src/flags.h src/runner/execute_cmd.h src/mailcheck.h src/input/input.h $(DEFSRC)/common.h
1351 .obj/var/variables.o: src/impl/findcmd.h src/bushhist.h src/hashcmd.h src/impl/pathexp.h
1352 .obj/var/variables.o: src/pcomplete.h ${BUSHINCDIR}/chartypes.h
1353 .obj/var/variables.o: ${BUSHINCDIR}/posixtime.h src/var/assoc.h ${DEFSRC}/getopt.h
1354 .obj/var/variables.o:src/version.h $(DEFDIR)/builtext.h
1355 .obj/version.o: src/conftypes.h src/patchlevel.h src/version.h
1356 .obj/xmalloc.o: config.h src/bushtypes.h ${BUSHINCDIR}/ansi_stdlib.h src/error.h
1357 .obj/xmalloc.o: ${BUSHINCDIR}/stdc.h $(ALLOC_LIBSRC)/shmalloc.h
1359 # job control
1361 .obj/jobs.o: config.h src/bushtypes.h src/trap.h ${BUSHINCDIR}/filecntl.h src/input/input.h ${BUSHINCDIR}/shtty.h
1362 .obj/jobs.o: src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/var/assoc.h
1363 .obj/jobs.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1364 .obj/jobs.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1365 .obj/jobs.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h src/lxrgmr/parser.h
1366 .obj/jobs.o: src/runner/execute_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1367 .obj/jobs.o: src/jobs.h src/flags.h $(DEFSRC)/common.h $(DEFDIR)/builtext.h
1368 .obj/jobs.o: ${BUSHINCDIR}/posixwait.h ${BUSHINCDIR}/unionwait.h
1369 .obj/jobs.o: ${BUSHINCDIR}/posixtime.h
1370 .obj/jobs.o: $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h $(BUSHINCDIR)/typemax.h
1371 .obj/nojobs.o: config.h src/bushtypes.h ${BUSHINCDIR}/filecntl.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h
1372 .obj/nojobs.o: src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/general.h src/xmalloc.h src/jobs.h src/quit.h src/siglist.h src/externs.h
1373 .obj/nojobs.o: src/sig.h src/error.h ${BUSHINCDIR}/shtty.h src/input/input.h src/lxrgmr/parser.h
1374 .obj/nojobs.o: $(DEFDIR)/builtext.h
1375 .obj/nojobs.o: $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h $(BUSHINCDIR)/typemax.h
1377 # shell features that may be compiled in
1379 .obj/var/array.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1380 .obj/var/array.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1381 .obj/var/array.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1382 .obj/var/array.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1383 .obj/var/array.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1384 .obj/var/array.o: $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h
1385 .obj/var/array.o: $(DEFSRC)/common.h
1386 .obj/var/arrayfunc.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1387 .obj/var/arrayfunc.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1388 .obj/var/arrayfunc.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1389 .obj/var/arrayfunc.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1390 .obj/var/arrayfunc.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/impl/pathexp.h
1391 .obj/var/arrayfunc.o: src/runner/execute_cmd.h
1392 .obj/var/arrayfunc.o: src/var/assoc.h $(BUSHINCDIR)/ocache.h $(BUSHINCDIR)/chartypes.h
1393 .obj/var/arrayfunc.o: $(DEFSRC)/common.h
1394 .obj/var/arrayfunc.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1395 .obj/var/assoc.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1396 .obj/var/assoc.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h
1397 .obj/var/assoc.o: src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1398 .obj/var/assoc.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1399 .obj/var/assoc.o: src/var/assoc.h src/hashlib.h
1400 .obj/var/assoc.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1401 .obj/var/assoc.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1402 .obj/var/assoc.o: src/var/array.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1403 .obj/var/assoc.o: $(DEFSRC)/common.h
1404 .obj/lxrgmr/braces.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1405 .obj/lxrgmr/braces.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1406 .obj/lxrgmr/braces.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1407 .obj/lxrgmr/braces.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1408 .obj/lxrgmr/braces.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1409 .obj/lxrgmr/braces.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1410 .obj/lxrgmr/braces.o: ${BUSHINCDIR}/typemax.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1411 .obj/impl/alias.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h
1412 .obj/impl/alias.o: src/general.h src/xmalloc.h src/bushtypes.h src/externs.h src/impl/alias.h
1413 .obj/impl/alias.o: src/pcomplete.h src/hashlib.h
1414 .obj/impl/alias.o: ${BUSHINCDIR}/chartypes.h
1416 .obj/pcomplib.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/bushtypes.h
1417 .obj/pcomplib.o: ${BUSHINCDIR}/stdc.h src/hashlib.h src/pcomplete.h src/shell.h src/syntax.h
1418 .obj/pcomplib.o: src/bushjmp.h src/lxrgmr/command.h src/general.h src/xmalloc.h src/error.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1419 .obj/pcomplib.o: src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h
1420 .obj/pcomplib.o: src/externs.h ${BUSHINCDIR}/maxpath.h src/var/assoc.h src/var/array.h
1421 .obj/pcomplib.o: ${BUSHINCDIR}/posixjmp.h ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h
1423 .obj/pcomplete.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/bushtypes.h
1424 .obj/pcomplete.o: ${BUSHINCDIR}/stdc.h src/hashlib.h src/pcomplete.h src/shell.h src/syntax.h
1425 .obj/pcomplete.o: src/bushjmp.h src/lxrgmr/command.h src/general.h src/xmalloc.h src/error.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1426 .obj/pcomplete.o: src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h
1427 .obj/pcomplete.o: src/externs.h ${BUSHINCDIR}/maxpath.h src/runner/execute_cmd.h
1428 .obj/pcomplete.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1429 .obj/pcomplete.o: ${DEFDIR}/builtext.h
1431 # library support files
1433 .obj/bushhist.o: config.h src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h ${BUSHINCDIR}/posixstat.h
1434 .obj/bushhist.o: ${BUSHINCDIR}/filecntl.h
1435 .obj/bushhist.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1436 .obj/bushhist.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1437 .obj/bushhist.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1438 .obj/bushhist.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1439 .obj/bushhist.o: src/flags.h src/input/input.h src/lxrgmr/parser.h src/impl/pathexp.h $(DEFSRC)/common.h src/input/bushline.h
1440 .obj/bushhist.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/bushhist.h src/var/assoc.h
1441 .obj/bushhist.o: $(GLOB_LIBSRC)/strmatch.h ${GLOB_LIBSRC}/glob.h
1442 .obj/input/bushline.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1443 .obj/input/bushline.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1444 .obj/input/bushline.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/var/array.h src/hashlib.h
1445 .obj/input/bushline.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1446 .obj/input/bushline.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1447 .obj/input/bushline.o: src/builtins.h src/bushhist.h src/input/bushline.h src/runner/execute_cmd.h src/impl/findcmd.h src/impl/pathexp.h
1448 .obj/input/bushline.o: src/trap.h src/flags.h src/var/assoc.h $(BUSHINCDIR)/ocache.h
1449 .obj/input/bushline.o: $(DEFSRC)/common.h $(GLOB_LIBSRC)/glob.h src/impl/alias.h
1450 .obj/input/bushline.o: src/pcomplete.h ${BUSHINCDIR}/chartypes.h src/input/input.h
1451 .obj/input/bushline.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1452 .obj/bracecomp.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1453 .obj/bracecomp.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h
1454 .obj/bracecomp.o: src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/error.h
1455 .obj/bracecomp.o: src/general.h src/xmalloc.h src/bushtypes.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1456 .obj/bracecomp.o: src/var/array.h src/hashlib.h src/impl/alias.h src/builtins.h
1457 .obj/bracecomp.o: src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1458 .obj/bracecomp.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1459 .obj/bracecomp.o: ${BUSHINCDIR}/ocache.h ${BUSHINCDIR}/chartypes.h src/bushhist.h src/var/assoc.h
1460 .obj/bracecomp.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1462 # library dependencies
1464 bushhist.o: $(RL_LIBSRC)/rltypedefs.h
1465 .obj/input/bushline.o: $(RL_LIBSRC)/rlconf.h
1466 .obj/input/bushline.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/rlstdc.h
1467 .obj/input/bushline.o: $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/readline.h
1468 .obj/input/bushline.o: $(RL_LIBSRC)/rltypedefs.h ${RL_LIBSRC}/rlmbutil.h
1469 .obj/bracecomp.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1470 .obj/bracecomp.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1471 .obj/bracecomp.o: $(RL_LIBSRC)/rltypedefs.h
1472 .obj/lxrgmr/y.tab.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1473 .obj/lxrgmr/y.tab.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1474 .obj/lxrgmr/y.tab.o: $(RL_LIBSRC)/rltypedefs.h
1475 .obj/lxrgmr/subst.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1476 .obj/lxrgmr/subst.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1477 .obj/shell.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1478 .obj/shell.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1479 .obj/shell.o: $(RL_LIBSRC)/rltypedefs.h
1480 .obj/var/variables.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1481 .obj/var/variables.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1482 .obj/var/variables.o: $(RL_LIBSRC)/rltypedefs.h
1483 .obj/jobs.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h
1484 .obj/jobs.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h
1485 .obj/jobs.o: $(RL_LIBSRC)/rltypedefs.h
1487 .obj/shell.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1488 .obj/var/variables.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1489 .obj/lxrgmr/subst.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1490 .obj/input/bushline.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1491 .obj/bushhist.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1492 .obj/lxrgmr/y.tab.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h
1494 .obj/input/bushline.o: $(TILDE_LIBSRC)/tilde.h
1495 .obj/bracecomp.o: $(TILDE_LIBSRC)/tilde.h
1496 .obj/runner/execute_cmd.o: $(TILDE_LIBSRC)/tilde.h
1497 .obj/general.o: $(TILDE_LIBSRC)/tilde.h
1498 .obj/mailcheck.o: $(TILDE_LIBSRC)/tilde.h
1499 .obj/shell.o: $(TILDE_LIBSRC)/tilde.h
1500 .obj/lxrgmr/subst.o: $(TILDE_LIBSRC)/tilde.h
1501 .obj/var/variables.o: $(TILDE_LIBSRC)/tilde.h
1502 .obj/jobs.o: $(TILDE_LIBSRC)/tilde.h
1503 .obj/lxrgmr/y.tab.o: $(TILDE_LIBSRC)/tilde.h
1505 # libintl dependencies
1506 .obj/var/arrayfunc.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1507 .obj/bushhist.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1508 .obj/input/bushline.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1509 .obj/lxrgmr/braces.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1510 .obj/error.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1511 .obj/runner/eval.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1512 .obj/runner/execute_cmd.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1513 .obj/runner/expr.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1514 .obj/general.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1515 .obj/input/input.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1516 .obj/jobs.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1517 .obj/locale.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1518 .obj/mailcheck.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1519 .obj/lxrgmr/make_cmd.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1520 .obj/nojobs.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1521 .obj/lxrgmr/y.tab.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1522 .obj/impl/pathexp.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1523 .obj/pcomplete.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1524 .obj/pcomplib.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1525 .obj/runner/print_cmd.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1526 .obj/redir.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1527 .obj/shell.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1528 .obj/sig.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1529 .obj/siglist.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1530 .obj/lxrgmr/subst.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1531 .obj/test.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1532 .obj/trap.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1533 .obj/var/variables.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1534 .obj/version.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1535 .obj/xmalloc.o: src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1537 # XXX
1538 $(MALLOC_SOURCE): src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1540 .obj/signames.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1542 # XXX - dependencies checked through here
1544 # builtin c sources
1545 builtins/bushgetopt.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1546 builtins/bushgetopt.o: src/shell.h src/syntax.h config.h src/bushjmp.h src/lxrgmr/command.h src/general.h src/xmalloc.h src/error.h
1547 builtins/bushgetopt.o: src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1548 builtins/bushgetopt.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1549 builtins/bushgetopt.o: $(DEFSRC)/common.h
1550 builtins/bushgetopt.o: ${BUSHINCDIR}/chartypes.h
1551 builtins/common.o: src/bushtypes.h ${BUSHINCDIR}/posixstat.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1552 builtins/common.o: src/shell.h src/syntax.h config.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/lxrgmr/command.h
1553 builtins/common.o: ${BUSHINCDIR}/memalloc.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/input/input.h src/siglist.h
1554 builtins/common.o: src/quit.h src/runner/unwind_prot.h ${BUSHINCDIR}/maxpath.h src/jobs.h src/builtins.h
1555 builtins/common.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h src/bushhist.h
1556 builtins/common.o: src/runner/execute_cmd.h ${BUSHINCDIR}/stdc.h src/general.h src/xmalloc.h src/error.h src/pathnames.h
1557 builtins/common.o: ${DEFDIR}/builtext.h src/lxrgmr/parser.h
1558 builtins/common.o: ${BUSHINCDIR}/chartypes.h
1559 builtins/evalfile.o: src/bushtypes.h ${BUSHINCDIR}/posixstat.h ${BUSHINCDIR}/filecntl.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1560 builtins/evalfile.o: src/shell.h src/syntax.h config.h src/bushjmp.h src/lxrgmr/command.h src/general.h src/xmalloc.h src/error.h
1561 builtins/evalfile.o: src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1562 builtins/evalfile.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h src/lxrgmr/parser.h
1563 builtins/evalfile.o: src/jobs.h src/builtins.h src/flags.h src/input/input.h src/runner/execute_cmd.h
1564 builtins/evalfile.o: src/bushhist.h $(DEFSRC)/common.h
1565 builtins/evalstring.o: config.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1566 builtins/evalstring.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/lxrgmr/command.h src/siglist.h
1567 builtins/evalstring.o: ${BUSHINCDIR}/memalloc.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/input/input.h
1568 builtins/evalstring.o: src/quit.h src/runner/unwind_prot.h ${BUSHINCDIR}/maxpath.h src/jobs.h src/builtins.h
1569 builtins/evalstring.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h
1570 builtins/evalstring.o: src/jobs.h src/builtins.h src/flags.h src/input/input.h src/runner/execute_cmd.h
1571 builtins/evalstring.o: src/bushhist.h $(DEFSRC)/common.h src/pathnames.h
1572 builtins/getopt.o: config.h ${BUSHINCDIR}/memalloc.h
1573 builtins/getopt.o: src/shell.h src/syntax.h src/bushjmp.h src/lxrgmr/command.h src/general.h src/xmalloc.h src/error.h
1574 builtins/getopt.o: src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h ${BUSHINCDIR}/maxpath.h src/runner/unwind_prot.h src/lxrgmr/dispose_cmd.h
1575 builtins/getopt.o: src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/sig.h src/pathnames.h src/externs.h
1576 builtins/getopt.o: $(DEFSRC)/getopt.h
1577 builtins/mkbuiltins.o: config.h src/bushtypes.h ${BUSHINCDIR}/posixstat.h ${BUSHINCDIR}/filecntl.h
1578 builtins/mkbuiltins.o: src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1579 builtins/mkbuiltins.o: $(BUSHINCDIR)/stdc.h
1581 # builtin def files
1582 builtins/alias.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1583 builtins/alias.o: src/quit.h $(DEFSRC)/common.h src/pathnames.h
1584 builtins/alias.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h src/runner/unwind_prot.h
1585 builtins/alias.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1586 builtins/bind.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1587 builtins/bind.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1588 builtins/bind.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1589 builtins/bind.o: $(DEFSRC)/bushgetopt.h src/pathnames.h
1590 builtins/break.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1591 builtins/break.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1592 builtins/break.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1593 builtins/break.o: src/pathnames.h src/runner/execute_cmd.h
1594 builtins/builtin.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1595 builtins/builtin.o: src/quit.h $(DEFSRC)/common.h $(DEFSRC)/bushgetopt.h
1596 builtins/builtin.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1597 builtins/builtin.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1598 builtins/builtin.o: src/pathnames.h src/runner/execute_cmd.h
1599 builtins/caller.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1600 builtins/caller.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1601 builtins/caller.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1602 builtins/caller.o: $(DEFSRC)/common.h src/quit.h
1603 builtins/caller.o: ${BUSHINCDIR}/chartypes.h src/bushtypes.h
1604 builtins/caller.o: ${DEFDIR}/builtext.h src/pathnames.h
1605 builtins/cd.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1606 builtins/cd.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1607 builtins/cd.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1608 builtins/cd.o: $(DEFSRC)/common.h src/quit.h src/pathnames.h
1609 builtins/colon.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1610 builtins/colon.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1611 builtins/colon.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1612 builtins/colon.o: src/pathnames.h
1613 builtins/command.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1614 builtins/command.o: src/quit.h $(DEFSRC)/bushgetopt.h
1615 builtins/command.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1616 builtins/command.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h src/pathnames.h
1617 builtins/declare.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1618 builtins/declare.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1619 builtins/declare.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1620 builtins/declare.o: $(DEFSRC)/bushgetopt.h src/pathnames.h src/flags.h
1621 builtins/echo.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1622 builtins/echo.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1623 builtins/echo.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1624 builtins/echo.o: src/pathnames.h
1625 builtins/echo.o: $(DEFSRC)/common.h
1626 builtins/enable.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1627 builtins/enable.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1628 builtins/enable.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1629 builtins/enable.o: src/pcomplete.h src/pathnames.h
1630 builtins/eval.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1631 builtins/eval.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1632 builtins/eval.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1633 builtins/eval.o: src/pathnames.h
1634 builtins/exec.o: src/bushtypes.h src/pathnames.h
1635 builtins/exec.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1636 builtins/exec.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1637 builtins/exec.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h src/runner/execute_cmd.h
1638 builtins/exec.o: src/impl/findcmd.h src/flags.h src/quit.h $(DEFSRC)/common.h ${BUSHINCDIR}/stdc.h
1639 builtins/exec.o: src/pathnames.h
1640 builtins/exit.o: src/bushtypes.h
1641 builtins/exit.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1642 builtins/exit.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1643 builtins/exit.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1644 builtins/exit.o: src/pathnames.h src/runner/execute_cmd.h
1645 builtins/fc.o: src/bushtypes.h ${BUSHINCDIR}/posixstat.h
1646 builtins/fc.o: src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h src/builtins.h src/lxrgmr/command.h ${BUSHINCDIR}/stdc.h
1647 builtins/fc.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1648 builtins/fc.o: src/flags.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h
1649 builtins/fc.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h src/quit.h
1650 builtins/fc.o: $(DEFSRC)/bushgetopt.h src/bushhist.h src/pathnames.h src/lxrgmr/parser.h
1651 builtins/fc.o: ${BUSHINCDIR}/chartypes.h
1652 builtins/fg_bg.o: src/bushtypes.h $(DEFSRC)/bushgetopt.h
1653 builtins/fg_bg.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1654 builtins/fg_bg.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1655 builtins/fg_bg.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1656 builtins/fg_bg.o: src/pathnames.h src/runner/execute_cmd.h
1657 builtins/getopts.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1658 builtins/getopts.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1659 builtins/getopts.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1660 builtins/getopts.o: src/pathnames.h src/runner/execute_cmd.h
1661 builtins/hash.o: src/bushtypes.h src/runner/execute_cmd.h
1662 builtins/hash.o: src/builtins.h src/lxrgmr/command.h src/impl/findcmd.h ${BUSHINCDIR}/stdc.h $(DEFSRC)/common.h
1663 builtins/hash.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1664 builtins/hash.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1665 builtins/hash.o: src/pathnames.h
1666 builtins/help.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1667 builtins/help.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1668 builtins/help.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h
1669 builtins/help.o: src/conftypes.h src/quit.h src/runner/execute_cmd.h
1670 builtins/help.o: $(GLOB_LIBSRC)/glob.h src/pathnames.h
1671 builtins/history.o: src/bushtypes.h src/pathnames.h src/lxrgmr/parser.h
1672 builtins/history.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1673 builtins/history.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1674 builtins/history.o: ${BUSHINCDIR}/filecntl.h src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h
1675 builtins/history.o: src/bushhist.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1676 builtins/inlib.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1677 builtins/inlib.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/quit.h
1678 builtins/inlib.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1679 builtins/inlib.o: src/pathnames.h
1680 builtins/jobs.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1681 builtins/jobs.o: src/quit.h $(DEFSRC)/bushgetopt.h
1682 builtins/jobs.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1683 builtins/jobs.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1684 builtins/jobs.o: src/pathnames.h
1685 builtins/kill.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1686 builtins/kill.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1687 builtins/kill.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/trap.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1688 builtins/kill.o: src/pathnames.h
1689 builtins/let.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1690 builtins/let.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1691 builtins/let.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1692 builtins/let.o: src/pathnames.h
1693 builtins/printf.o: config.h ${BUSHINCDIR}/memalloc.h src/bushjmp.h src/lxrgmr/command.h src/error.h
1694 builtins/printf.o: src/general.h src/xmalloc.h src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h
1695 builtins/printf.o: src/externs.h src/sig.h src/pathnames.h src/shell.h src/syntax.h src/runner/unwind_prot.h
1696 builtins/printf.o: src/var/variables.h src/var/arrayfunc.h src/conftypes.h ${BUSHINCDIR}/stdc.h $(DEFSRC)/bushgetopt.h
1697 builtins/printf.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1698 builtins/printf.o: ${BUSHINCDIR}/chartypes.h
1699 builtins/pushd.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1700 builtins/pushd.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1701 builtins/pushd.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1702 builtins/pushd.o: $(DEFSRC)/common.h src/pathnames.h
1703 builtins/read.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1704 builtins/read.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1705 builtins/read.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1706 builtins/read.o: ${BUSHINCDIR}/shmbutil.h ${BUSHINCDIR}/shmbchar.h
1707 builtins/read.o: src/pathnames.h
1708 builtins/return.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1709 builtins/return.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1710 builtins/return.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1711 builtins/return.o: src/pathnames.h src/runner/execute_cmd.h
1712 builtins/set.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1713 builtins/set.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1714 builtins/set.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h src/flags.h
1715 builtins/set.o: src/pathnames.h src/lxrgmr/parser.h
1716 builtins/setattr.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1717 builtins/setattr.o: src/quit.h $(DEFSRC)/common.h $(DEFSRC)/bushgetopt.h
1718 builtins/setattr.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1719 builtins/setattr.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1720 builtins/setattr.o: src/pathnames.h src/flags.h src/runner/execute_cmd.h
1721 builtins/shift.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1722 builtins/shift.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1723 builtins/shift.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1724 builtins/shift.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1725 builtins/shift.o: src/pathnames.h
1726 builtins/shopt.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h
1727 builtins/shopt.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h
1728 builtins/shopt.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h ${BUSHINCDIR}/maxpath.h
1729 builtins/shopt.o: $(DEFSRC)/common.h $(DEFSRC)/bushgetopt.h src/pathnames.h
1730 builtins/shopt.o: src/bushhist.h src/input/bushline.h
1731 builtins/source.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1732 builtins/source.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1733 builtins/source.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1734 builtins/source.o: src/impl/findcmd.h $(DEFSRC)/bushgetopt.h src/flags.h trap.h
1735 builtins/source.o: src/pathnames.h src/runner/execute_cmd.h
1736 builtins/suspend.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1737 builtins/suspend.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1738 builtins/suspend.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1739 builtins/suspend.o: src/pathnames.h
1740 builtins/test.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1741 builtins/test.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1742 builtins/test.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1743 builtins/test.o: src/runner/execute_cmd.h src/test.h src/pathnames.h
1744 builtins/times.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1745 builtins/times.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1746 builtins/times.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1747 builtins/times.o: src/pathnames.h
1748 builtins/trap.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1749 builtins/trap.o: src/quit.h $(DEFSRC)/common.h
1750 builtins/trap.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1751 builtins/trap.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1752 builtins/trap.o: src/pathnames.h
1753 builtins/type.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1754 builtins/type.o: src/quit.h $(DEFSRC)/common.h src/impl/findcmd.h
1755 builtins/type.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1756 builtins/type.o: src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1757 builtins/type.o: src/pathnames.h src/runner/execute_cmd.h src/lxrgmr/parser.h
1758 builtins/ulimit.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1759 builtins/ulimit.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1760 builtins/ulimit.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1761 builtins/ulimit.o: src/pathnames.h
1762 builtins/umask.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1763 builtins/umask.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1764 builtins/umask.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1765 builtins/umask.o: ${BUSHINCDIR}/chartypes.h src/pathnames.h
1766 builtins/wait.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1767 builtins/wait.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1768 builtins/wait.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1769 builtins/wait.o: src/runner/execute_cmd.h
1770 builtins/wait.o: ${BUSHINCDIR}/chartypes.h src/pathnames.h
1772 builtins/complete.o: config.h src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h
1773 builtins/complete.o: src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1774 builtins/complete.o: src/bushtypes.h src/bushansi.h ${BUSHINCDIR}/ansi_stdlib.h
1775 builtins/complete.o: src/builtins.h src/pathnames.h src/general.h
1776 builtins/complete.o: src/bushtypes.h ${BUSHINCDIR}/chartypes.h src/xmalloc.h
1777 builtins/complete.o: src/pcomplete.h
1778 builtins/complete.o: ${DEFSRC}/common.h ${DEFSRC}/bushgetopt.h
1779 builtins/mapfile.o: src/lxrgmr/command.h config.h ${BUSHINCDIR}/memalloc.h src/error.h src/general.h src/xmalloc.h ${BUSHINCDIR}/maxpath.h
1780 builtins/mapfile.o: src/quit.h src/lxrgmr/dispose_cmd.h src/lxrgmr/make_cmd.h src/lxrgmr/subst.h src/externs.h ${BUSHINCDIR}/stdc.h
1781 builtins/mapfile.o: src/shell.h src/syntax.h src/bushjmp.h ${BUSHINCDIR}/posixjmp.h src/sig.h src/runner/unwind_prot.h src/var/variables.h src/var/arrayfunc.h src/conftypes.h
1782 builtins/mapfile.o: src/pathnames.h
1784 # libintl dependencies
1785 builtins/bind.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1786 builtins/break.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1787 builtins/caller.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1788 builtins/cd.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1789 builtins/common.c: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1790 builtins/complete.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1791 builtins/declare.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1792 builtins/enable.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1793 builtins/evalfile.c: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1794 builtins/exec.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1795 builtins/exit.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1796 builtins/fc.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1797 builtins/fg_bg.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1798 builtins/getopt.c: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1799 builtins/hash.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1800 builtins/help.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1801 builtins/history.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1802 builtins/inlib.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1803 builtins/jobs.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1804 builtins/kill.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1805 builtins/let.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1806 builtins/mapfile.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1807 builtins/mkbuiltins.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1808 builtins/printf.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1809 builtins/pushd.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1810 builtins/read.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1811 builtins/return.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1812 builtins/set.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1813 builtins/setattr.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1814 builtins/shift.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1815 builtins/shopt.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1816 builtins/source.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1817 builtins/suspend.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1818 builtins/type.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1819 builtins/ulimit.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1820 builtins/umask.o: ${topdir}/src/bushintl.h ${LIBINTL_H} $(BUSHINCDIR)/gettext.h
1822 # builtin library dependencies
1823 builtins/bind.o: $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/readline.h
1824 builtins/bind.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/rlstdc.h
1826 builtins/bind.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h
1827 builtins/fc.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h
1828 builtins/history.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h
1830 builtins/common.o: $(TILDE_LIBSRC)/tilde.h
1831 builtins/cd.o: $(TILDE_LIBSRC)/tilde.h
1833 builtins/alias.o: $(DEFSRC)/alias.def
1834 builtins/bind.o: $(DEFSRC)/bind.def
1835 builtins/break.o: $(DEFSRC)/break.def
1836 builtins/builtin.o: $(DEFSRC)/builtin.def
1837 builtins/caller.o: $(DEFSRC)/caller.def
1838 builtins/cd.o: $(DEFSRC)/cd.def
1839 builtins/colon.o: $(DEFSRC)/colon.def
1840 builtins/command.o: $(DEFSRC)/command.def
1841 builtins/complete.o: $(DEFSRC)/complete.def
1842 builtins/declare.o: $(DEFSRC)/declare.def
1843 builtins/echo.o: $(DEFSRC)/echo.def
1844 builtins/enable.o: $(DEFSRC)/enable.def
1845 builtins/eval.o: $(DEFSRC)/eval.def
1846 builtins/exec.o: $(DEFSRC)/exec.def
1847 builtins/exit.o: $(DEFSRC)/exit.def
1848 builtins/fc.o: $(DEFSRC)/fc.def
1849 builtins/fg_bg.o: $(DEFSRC)/fg_bg.def
1850 builtins/getopts.o: $(DEFSRC)/getopts.def
1851 builtins/hash.o: $(DEFSRC)/hash.def
1852 builtins/help.o: $(DEFSRC)/help.def
1853 builtins/history.o: $(DEFSRC)/history.def
1854 builtins/inlib.o: $(DEFSRC)/inlib.def
1855 builtins/jobs.o: $(DEFSRC)/jobs.def
1856 builtins/kill.o: $(DEFSRC)/kill.def
1857 builtins/let.o: $(DEFSRC)/let.def
1858 builtins/mapfile.o: $(DEFSRC)/mapfile.def
1859 builtins/pushd.o: $(DEFSRC)/pushd.def
1860 builtins/read.o: $(DEFSRC)/read.def
1861 builtins/reserved.o: $(DEFSRC)/reserved.def
1862 builtins/return.o: $(DEFSRC)/return.def
1863 builtins/set.o: $(DEFSRC)/set.def
1864 builtins/setattr.o: $(DEFSRC)/setattr.def
1865 builtins/shift.o: $(DEFSRC)/shift.def
1866 builtins/shopt.o: $(DEFSRC)/shopt.def
1867 builtins/source.o: $(DEFSRC)/source.def
1868 builtins/suspend.o: $(DEFSRC)/suspend.def
1869 builtins/test.o: $(DEFSRC)/test.def
1870 builtins/times.o: $(DEFSRC)/times.def
1871 builtins/trap.o: $(DEFSRC)/trap.def
1872 builtins/type.o: $(DEFSRC)/type.def
1873 builtins/ulimit.o: $(DEFSRC)/ulimit.def
1874 builtins/umask.o: $(DEFSRC)/umask.def
1875 builtins/wait.o: $(DEFSRC)/wait.def