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