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