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