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