source: trunk/third/bash/Makefile.in @ 21280

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