| 1 | # This Makefile for building libbuiltins.a is in -*- text -*- for Emacs.
|
|---|
| 2 | #
|
|---|
| 3 | # Copyright (C) 1996-2005 Free Software Foundation, Inc.
|
|---|
| 4 |
|
|---|
| 5 | # This program is free software; you can redistribute it and/or modify
|
|---|
| 6 | # it under the terms of the GNU General Public License as published by
|
|---|
| 7 | # the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 8 | # any later version.
|
|---|
| 9 |
|
|---|
| 10 | # This program is distributed in the hope that it will be useful,
|
|---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | # GNU General Public License for more details.
|
|---|
| 14 |
|
|---|
| 15 | # You should have received a copy of the GNU General Public License
|
|---|
| 16 | # along with this program; if not, write to the Free Software
|
|---|
| 17 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|---|
| 18 |
|
|---|
| 19 | PACKAGE = @PACKAGE@
|
|---|
| 20 | PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|---|
| 21 | PACKAGE_NAME = @PACKAGE_NAME@
|
|---|
| 22 | PACKAGE_STRING = @PACKAGE_STRING@
|
|---|
| 23 | PACKAGE_VERSION = @PACKAGE_VERSION@
|
|---|
| 24 |
|
|---|
| 25 | #
|
|---|
| 26 | SHELL = @MAKE_SHELL@
|
|---|
| 27 | RANLIB = @RANLIB@
|
|---|
| 28 | CC = @CC@
|
|---|
| 29 | CC_FOR_BUILD = @CC_FOR_BUILD@
|
|---|
| 30 | AR = @AR@
|
|---|
| 31 | ARFLAGS = @ARFLAGS@
|
|---|
| 32 | RM = rm -f
|
|---|
| 33 | CP = cp
|
|---|
| 34 |
|
|---|
| 35 | EXEEXT = @EXEEXT@
|
|---|
| 36 |
|
|---|
| 37 | prefix = @prefix@
|
|---|
| 38 |
|
|---|
| 39 | srcdir = @srcdir@
|
|---|
| 40 | VPATH = .:@srcdir@
|
|---|
| 41 | topdir = @top_srcdir@
|
|---|
| 42 | includedir = @includedir@
|
|---|
| 43 | datadir = @datadir@
|
|---|
| 44 | localedir = $(datadir)/locale
|
|---|
| 45 |
|
|---|
| 46 | # Support an alternate destination root directory for package building
|
|---|
| 47 | DESTDIR =
|
|---|
| 48 |
|
|---|
| 49 | INSTALL = @INSTALL@
|
|---|
| 50 | INSTALL_DATA = @INSTALL_DATA@
|
|---|
| 51 | BUILD_DIR = @BUILD_DIR@
|
|---|
| 52 |
|
|---|
| 53 | LIBBUILD = ${BUILD_DIR}/lib
|
|---|
| 54 |
|
|---|
| 55 | PROFILE_FLAGS = @PROFILE_FLAGS@
|
|---|
| 56 | CFLAGS = @CFLAGS@
|
|---|
| 57 | CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@
|
|---|
| 58 | CPPFLAGS = @CPPFLAGS@
|
|---|
| 59 | CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
|
|---|
| 60 | LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
|
|---|
| 61 | DEFS = @DEFS@
|
|---|
| 62 | LOCAL_DEFS = @LOCAL_DEFS@
|
|---|
| 63 |
|
|---|
| 64 | LIBS = @LIBS@
|
|---|
| 65 | LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
|
|---|
| 66 | LDFLAGS_FOR_BUILD = $(LDFLAGS)
|
|---|
| 67 | LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
|
|---|
| 68 | #LIBS_FOR_BUILD = @LIBS_FOR_BUILD@
|
|---|
| 69 | LIBS_FOR_BUILD = $(LIBS)
|
|---|
| 70 |
|
|---|
| 71 | BASHINCDIR = ${topdir}/include
|
|---|
| 72 |
|
|---|
| 73 | RL_INCLUDEDIR = @RL_INCLUDEDIR@
|
|---|
| 74 |
|
|---|
| 75 | INTL_LIBSRC = ${topdir}/lib/intl
|
|---|
| 76 | INTL_BUILDDIR = ${LIBBUILD}/intl
|
|---|
| 77 | INTL_INC = @INTL_INC@
|
|---|
| 78 | LIBINTL_H = @LIBINTL_H@
|
|---|
| 79 |
|
|---|
| 80 | HELPDIR = @HELPDIR@
|
|---|
| 81 | MKDIRS = ${topdir}/support/mkdirs
|
|---|
| 82 |
|
|---|
| 83 | INCLUDES = -I. -I.. @RL_INCLUDE@ -I$(topdir) -I$(BASHINCDIR) -I$(topdir)/lib -I$(srcdir) ${INTL_INC}
|
|---|
| 84 |
|
|---|
| 85 | BASE_CCFLAGS = ${PROFILE_FLAGS} $(DEFS) $(LOCAL_DEFS) $(SYSTEM_FLAGS) \
|
|---|
| 86 | ${INCLUDES} $(LOCAL_CFLAGS)
|
|---|
| 87 |
|
|---|
| 88 | CCFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(CFLAGS)
|
|---|
| 89 |
|
|---|
| 90 | CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
|
|---|
| 91 |
|
|---|
| 92 | GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
|
|---|
| 93 | -Wcast-align -Wstrict-prototypes -Wconversion \
|
|---|
| 94 | -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
|
|---|
| 95 |
|
|---|
| 96 | MKBUILTINS = mkbuiltins$(EXEEXT)
|
|---|
| 97 | DIRECTDEFINE = -D $(srcdir)
|
|---|
| 98 | HELPDIRDEFINE = @HELPDIRDEFINE@
|
|---|
| 99 | HELPSTRINGS = @HELPSTRINGS@
|
|---|
| 100 |
|
|---|
| 101 | # xxx this is bad style
|
|---|
| 102 | RL_LIBSRC = $(topdir)/lib/readline
|
|---|
| 103 |
|
|---|
| 104 | .SUFFIXES:
|
|---|
| 105 | .SUFFIXES: .def .c .o
|
|---|
| 106 | # How to make a .o file from a .def file.
|
|---|
| 107 | .def.o:
|
|---|
| 108 | $(RM) $@
|
|---|
| 109 | ./$(MKBUILTINS) $(DIRECTDEFINE) $<
|
|---|
| 110 | $(CC) -c $(CCFLAGS) $*.c || ( $(RM) $*.c ; exit 1 )
|
|---|
| 111 | $(RM) $*.c
|
|---|
| 112 |
|
|---|
| 113 | # How to make a .c file from a .def file.
|
|---|
| 114 | .def.c:
|
|---|
| 115 | $(RM) $@
|
|---|
| 116 | ./$(MKBUILTINS) $(DIRECTDEFINE) $<
|
|---|
| 117 |
|
|---|
| 118 | # default rule for making a .o file from a .c file
|
|---|
| 119 | .c.o:
|
|---|
| 120 | $(RM) $@
|
|---|
| 121 | $(CC) -c $(CCFLAGS) $<
|
|---|
| 122 |
|
|---|
| 123 | DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
|
|---|
| 124 | $(srcdir)/builtin.def $(srcdir)/caller.def \
|
|---|
| 125 | $(srcdir)/cd.def $(srcdir)/colon.def \
|
|---|
| 126 | $(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
|
|---|
| 127 | $(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
|
|---|
| 128 | $(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
|
|---|
| 129 | $(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
|
|---|
| 130 | $(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
|
|---|
| 131 | $(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
|
|---|
| 132 | $(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
|
|---|
| 133 | $(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
|
|---|
| 134 | $(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
|
|---|
| 135 | $(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
|
|---|
| 136 | $(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
|
|---|
| 137 | $(srcdir)/printf.def $(srcdir)/complete.def
|
|---|
| 138 |
|
|---|
| 139 | STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bashgetopt.c \
|
|---|
| 140 | getopt.h
|
|---|
| 141 |
|
|---|
| 142 | OFILES = builtins.o \
|
|---|
| 143 | alias.o bind.o break.o builtin.o caller.o cd.o colon.o command.o \
|
|---|
| 144 | common.o declare.o echo.o enable.o eval.o evalfile.o \
|
|---|
| 145 | evalstring.o exec.o \
|
|---|
| 146 | exit.o fc.o fg_bg.o hash.o help.o history.o jobs.o kill.o let.o \
|
|---|
| 147 | pushd.o read.o return.o set.o setattr.o shift.o source.o \
|
|---|
| 148 | suspend.o test.o times.o trap.o type.o ulimit.o umask.o \
|
|---|
| 149 | wait.o getopts.o shopt.o printf.o getopt.o bashgetopt.o complete.o
|
|---|
| 150 |
|
|---|
| 151 | CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h
|
|---|
| 152 |
|
|---|
| 153 | all: $(MKBUILTINS) libbuiltins.a
|
|---|
| 154 |
|
|---|
| 155 | libbuiltins.a: $(MKBUILTINS) $(OFILES) builtins.o
|
|---|
| 156 | $(RM) $@
|
|---|
| 157 | $(AR) $(ARFLAGS) $@ $(OFILES)
|
|---|
| 158 | -$(RANLIB) $@
|
|---|
| 159 |
|
|---|
| 160 | builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
|
|---|
| 161 | @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
|
|---|
| 162 | @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
|
|---|
| 163 | ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
|
|---|
| 164 | -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
|
|---|
| 165 | @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
|
|---|
| 166 | mv old-builtext.h builtext.h; \
|
|---|
| 167 | else \
|
|---|
| 168 | $(RM) old-builtext.h; \
|
|---|
| 169 | fi
|
|---|
| 170 | @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
|
|---|
| 171 | mv old-builtins.c builtins.c; \
|
|---|
| 172 | else \
|
|---|
| 173 | $(RM) old-builtins.c; \
|
|---|
| 174 | fi
|
|---|
| 175 |
|
|---|
| 176 | helpdoc: $(MKBUILTINS) $(DEFSRC)
|
|---|
| 177 | ./$(MKBUILTINS) ${HELPDIRDEFINE} -noproduction $(DIRECTDEFINE) $(DEFSRC)
|
|---|
| 178 |
|
|---|
| 179 | install-help:
|
|---|
| 180 | @-if test -n "${HELPDIR}" && test -d helpfiles ; then \
|
|---|
| 181 | test -d ${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
|
|---|
| 182 | ( for f in helpfiles/*; do \
|
|---|
| 183 | echo installing $$f; \
|
|---|
| 184 | ${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
|
|---|
| 185 | done; ) ; \
|
|---|
| 186 | fi
|
|---|
| 187 |
|
|---|
| 188 | install: @HELPINSTALL@
|
|---|
| 189 |
|
|---|
| 190 | mkbuiltins.o: ../config.h
|
|---|
| 191 | mkbuiltins.o: mkbuiltins.c
|
|---|
| 192 | $(RM) $@
|
|---|
| 193 | $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
|
|---|
| 194 |
|
|---|
| 195 | mkbuiltins$(EXEEXT): mkbuiltins.o
|
|---|
| 196 | $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
|
|---|
| 197 |
|
|---|
| 198 | # rules for deficient makes, like SunOS
|
|---|
| 199 | mkbuiltins.o: mkbuiltins.c
|
|---|
| 200 | builtins.o: builtins.c
|
|---|
| 201 | common.o: common.c
|
|---|
| 202 | bashgetopt.o: bashgetopt.c
|
|---|
| 203 | getopt.o: getopt.c
|
|---|
| 204 | evalstring.o: evalstring.c
|
|---|
| 205 | evalfile.o: evalfile.c
|
|---|
| 206 |
|
|---|
| 207 | ulimit.o: pipesize.h
|
|---|
| 208 |
|
|---|
| 209 | pipesize.h: psize.aux
|
|---|
| 210 | $(SHELL) $(srcdir)/psize.sh > $@
|
|---|
| 211 |
|
|---|
| 212 | psize.aux: psize.c
|
|---|
| 213 | $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $(srcdir)/psize.c
|
|---|
| 214 |
|
|---|
| 215 | documentation: builtins.texi
|
|---|
| 216 |
|
|---|
| 217 | builtins.texi: $(MKBUILTINS)
|
|---|
| 218 | ./$(MKBUILTINS) -documentonly $(DEFSRC)
|
|---|
| 219 |
|
|---|
| 220 | clean:
|
|---|
| 221 | $(RM) $(OFILES) $(CREATED_FILES) $(MKBUILTINS) mkbuiltins.o libbuiltins.a
|
|---|
| 222 | -test -d helpfiles && $(RM) -r helpfiles
|
|---|
| 223 |
|
|---|
| 224 | mostlyclean:
|
|---|
| 225 | $(RM) $(OFILES) libbuiltins.a
|
|---|
| 226 |
|
|---|
| 227 | distclean maintainer-clean: clean
|
|---|
| 228 | $(RM) Makefile
|
|---|
| 229 |
|
|---|
| 230 | $(OFILES): $(MKBUILTINS) ../config.h
|
|---|
| 231 |
|
|---|
| 232 | ../version.h: ../config.h ../Makefile Makefile
|
|---|
| 233 | -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
|
|---|
| 234 |
|
|---|
| 235 | # maintainer special - for now
|
|---|
| 236 | po: builtins.c
|
|---|
| 237 | xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
|
|---|
| 238 |
|
|---|
| 239 | # dependencies
|
|---|
| 240 |
|
|---|
| 241 | alias.o: alias.def
|
|---|
| 242 | bind.o: bind.def
|
|---|
| 243 | break.o: break.def
|
|---|
| 244 | builtin.o: builtin.def
|
|---|
| 245 | caller.o: caller.def
|
|---|
| 246 | cd.o: cd.def
|
|---|
| 247 | colon.o: colon.def
|
|---|
| 248 | command.o: command.def
|
|---|
| 249 | declare.o: declare.def
|
|---|
| 250 | echo.o: echo.def
|
|---|
| 251 | enable.o: enable.def
|
|---|
| 252 | eval.o: eval.def
|
|---|
| 253 | exec.o: exec.def
|
|---|
| 254 | exit.o: exit.def
|
|---|
| 255 | fc.o: fc.def
|
|---|
| 256 | fg_bg.o: fg_bg.def
|
|---|
| 257 | hash.o: hash.def
|
|---|
| 258 | help.o: help.def
|
|---|
| 259 | history.o: history.def
|
|---|
| 260 | jobs.o: jobs.def
|
|---|
| 261 | kill.o: kill.def
|
|---|
| 262 | let.o: let.def
|
|---|
| 263 | printf.o: printf.def
|
|---|
| 264 | pushd.o: pushd.def
|
|---|
| 265 | read.o: read.def
|
|---|
| 266 | return.o: return.def
|
|---|
| 267 | set.o: set.def
|
|---|
| 268 | setattr.o: setattr.def
|
|---|
| 269 | shift.o: shift.def
|
|---|
| 270 | shopt.o: shopt.def
|
|---|
| 271 | source.o: source.def
|
|---|
| 272 | suspend.o: suspend.def
|
|---|
| 273 | test.o: test.def
|
|---|
| 274 | times.o: times.def
|
|---|
| 275 | trap.o: trap.def
|
|---|
| 276 | type.o: type.def
|
|---|
| 277 | ulimit.o: ulimit.def
|
|---|
| 278 | umask.o: umask.def
|
|---|
| 279 | wait.o: wait.def
|
|---|
| 280 | getopts.o: getopts.def
|
|---|
| 281 | reserved.o: reserved.def
|
|---|
| 282 | complete.o: complete.def
|
|---|
| 283 |
|
|---|
| 284 | # C files
|
|---|
| 285 | bashgetopt.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
|
|---|
| 286 | bashgetopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h
|
|---|
| 287 | bashgetopt.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
|
|---|
| 288 | bashgetopt.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
|
|---|
| 289 | bashgetopt.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
|
|---|
| 290 | bashgetopt.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
|
|---|
| 291 | bashgetopt.o: ../pathnames.h $(topdir)/externs.h $(srcdir)/common.h
|
|---|
| 292 | bashgetopt.o: $(BASHINCDIR)/chartypes.h
|
|---|
| 293 | common.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
|
|---|
| 294 | common.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
|
|---|
| 295 | common.o: $(topdir)/sig.h $(topdir)/command.h
|
|---|
| 296 | common.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/stdc.h $(BASHINCDIR)/memalloc.h
|
|---|
| 297 | common.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
|
|---|
| 298 | common.o: $(topdir)/siglist.h $(topdir)/bashhist.h $(topdir)/quit.h
|
|---|
| 299 | common.o: $(topdir)/unwind_prot.h $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h
|
|---|
| 300 | common.o: $(topdir)/builtins.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 301 | common.o: $(topdir)/subst.h $(topdir)/execute_cmd.h $(topdir)/error.h
|
|---|
| 302 | common.o: $(topdir)/externs.h ../pathnames.h ./builtext.h
|
|---|
| 303 | common.o: $(BASHINCDIR)/chartypes.h
|
|---|
| 304 | evalfile.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h ${BASHINCDIR}/filecntl.h
|
|---|
| 305 | evalfile.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
|
|---|
| 306 | evalfile.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h
|
|---|
| 307 | evalfile.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
|
|---|
| 308 | evalfile.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
|
|---|
| 309 | evalfile.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
|
|---|
| 310 | evalfile.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
|
|---|
| 311 | evalfile.o: ../pathnames.h $(topdir)/externs.h
|
|---|
| 312 | evalfile.o: $(topdir)/jobs.h $(topdir)/builtins.h $(topdir)/flags.h
|
|---|
| 313 | evalfile.o: $(topdir)/input.h $(topdir)/execute_cmd.h
|
|---|
| 314 | evalfile.o: $(topdir)/bashhist.h $(srcdir)/common.h
|
|---|
| 315 | evalstring.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
|
|---|
| 316 | evalstring.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
|
|---|
| 317 | evalstring.o: $(topdir)/sig.h $(topdir)/command.h $(topdir)/siglist.h
|
|---|
| 318 | evalstring.o: $(BASHINCDIR)/memalloc.h $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
|
|---|
| 319 | evalstring.o: $(topdir)/quit.h $(topdir)/unwind_prot.h
|
|---|
| 320 | evalstring.o: $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h $(topdir)/builtins.h
|
|---|
| 321 | evalstring.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 322 | evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
|
|---|
| 323 | evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
|
|---|
| 324 | evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
|
|---|
| 325 | evalstring.o: $(topdir)/trap.h $(topdir)/redir.h
|
|---|
| 326 | getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 327 | getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
|
|---|
| 328 | getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 329 | getopt.o: $(topdir)/quit.h $(BASHINCDIR)/maxpath.h $(topdir)/unwind_prot.h
|
|---|
| 330 | getopt.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 331 | getopt.o: $(topdir)/sig.h ../pathnames.h $(topdir)/externs.h
|
|---|
| 332 | getopt.o: $(srcdir)/getopt.h
|
|---|
| 333 | mkbuiltins.o: ../config.h $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
|
|---|
| 334 | mkbuiltins.o: ${BASHINCDIR}/filecntl.h
|
|---|
| 335 | mkbuiltins.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
|
|---|
| 336 |
|
|---|
| 337 | # def files
|
|---|
| 338 | alias.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 339 | alias.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
|
|---|
| 340 | alias.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 341 | alias.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/common.h
|
|---|
| 342 | alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 343 | bind.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 344 | bind.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 345 | bind.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/bashgetopt.h
|
|---|
| 346 | bind.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h $(topdir)/bashline.h
|
|---|
| 347 | bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 348 | break.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 349 | break.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 350 | break.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 351 | break.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 352 | break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 353 | builtin.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 354 | builtin.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
|
|---|
| 355 | builtin.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
|
|---|
| 356 | builtin.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 357 | builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 358 | builtin.o: $(srcdir)/bashgetopt.h
|
|---|
| 359 | caller.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 360 | caller.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
|
|---|
| 361 | caller.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 362 | caller.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 363 | caller.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ./builtext.h
|
|---|
| 364 | caller.o: ${BASHINCDIR}/chartypes.h $(topdir)/bashtypes.h
|
|---|
| 365 | cd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 366 | cd.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
|
|---|
| 367 | cd.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 368 | cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 369 | cd.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
|
|---|
| 370 | command.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 371 | command.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
|
|---|
| 372 | command.o: $(topdir)/quit.h $(srcdir)/bashgetopt.h $(BASHINCDIR)/maxpath.h
|
|---|
| 373 | command.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 374 | command.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 375 | declare.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 376 | declare.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 377 | declare.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 378 | declare.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 379 | declare.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 380 | declare.o: $(topdir)/arrayfunc.h $(srcdir)/bashgetopt.h
|
|---|
| 381 | declare.o: ./builtext.h
|
|---|
| 382 | echo.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 383 | echo.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 384 | echo.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 385 | echo.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 386 | echo.o: $(BASHINCDIR)/maxpath.h
|
|---|
| 387 | enable.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 388 | enable.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 389 | enable.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 390 | enable.o: $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 391 | enable.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 392 | enable.o: $(BASHINCDIR)/maxpath.h
|
|---|
| 393 | enable.o: $(topdir)/pcomplete.h
|
|---|
| 394 | eval.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 395 | eval.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 396 | eval.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 397 | eval.o: $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 398 | eval.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 399 | eval.o: $(BASHINCDIR)/maxpath.h
|
|---|
| 400 | exec.o: $(topdir)/bashtypes.h
|
|---|
| 401 | exec.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 402 | exec.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 403 | exec.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 404 | exec.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/flags.h
|
|---|
| 405 | exec.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 406 | exec.o: $(srcdir)/common.h $(topdir)/execute_cmd.h $(BASHINCDIR)/maxpath.h
|
|---|
| 407 | exec.o: $(topdir)/findcmd.h $(topdir)/jobs.h
|
|---|
| 408 | exit.o: $(topdir)/bashtypes.h
|
|---|
| 409 | exit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 410 | exit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 411 | exit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 412 | exit.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/jobs.h
|
|---|
| 413 | exit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 414 | exit.o: $(BASHINCDIR)/maxpath.h ./builtext.h
|
|---|
| 415 | fc.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
|
|---|
| 416 | fc.o: $(topdir)/builtins.h $(topdir)/command.h $(srcdir)/bashgetopt.h
|
|---|
| 417 | fc.o: $(topdir)/bashhist.h
|
|---|
| 418 | fc.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 419 | fc.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
|
|---|
| 420 | fc.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 421 | fc.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/shell.h $(topdir)/syntax.h
|
|---|
| 422 | fc.o: $(topdir)/flags.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 423 | fc.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h $(BASHINCDIR)/chartypes.h
|
|---|
| 424 | fg_bg.o: $(topdir)/bashtypes.h $(srcdir)/bashgetopt.h
|
|---|
| 425 | fg_bg.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 426 | fg_bg.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 427 | fg_bg.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 428 | fg_bg.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 429 | fg_bg.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 430 | fg_bg.o: $(topdir)/jobs.h
|
|---|
| 431 | getopts.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 432 | getopts.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 433 | getopts.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 434 | getopts.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 435 | getopts.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 436 | hash.o: $(topdir)/builtins.h $(topdir)/command.h $(topdir)/quit.h
|
|---|
| 437 | hash.o: $(topdir)/findcmd.h $(topdir)/hashlib.h
|
|---|
| 438 | hash.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 439 | hash.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 440 | hash.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 441 | hash.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
|
|---|
| 442 | help.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 443 | help.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 444 | help.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 445 | help.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 446 | help.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 447 | help.o: ${srcdir}/common.h
|
|---|
| 448 | history.o: $(topdir)/bashtypes.h
|
|---|
| 449 | history.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 450 | history.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 451 | history.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 452 | history.o: $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 453 | history.o: ${BASHINCDIR}/filecntl.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
|
|---|
| 454 | history.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/bashhist.h $(BASHINCDIR)/maxpath.h
|
|---|
| 455 | inlib.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 456 | inlib.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 457 | inlib.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 458 | inlib.o: $(BASHINCDIR)/maxpath.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 459 | inlib.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 460 | jobs.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 461 | jobs.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(srcdir)/bashgetopt.h
|
|---|
| 462 | jobs.o: $(BASHINCDIR)/maxpath.h $(topdir)/externs.h $(topdir)/jobs.h
|
|---|
| 463 | jobs.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 464 | jobs.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 465 | kill.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
|
|---|
| 466 | kill.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 467 | kill.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 468 | kill.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/trap.h $(topdir)/unwind_prot.h
|
|---|
| 469 | kill.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/maxpath.h
|
|---|
| 470 | kill.o: $(topdir)/jobs.h
|
|---|
| 471 | let.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 472 | let.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 473 | let.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 474 | let.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 475 | let.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 476 | printf.o: ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/bashjmp.h
|
|---|
| 477 | printf.o: $(topdir)/command.h $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 478 | printf.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 479 | printf.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
|
|---|
| 480 | printf.o: ../pathnames.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
|
|---|
| 481 | printf.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/stdc.h $(srcdir)/bashgetopt.h
|
|---|
| 482 | printf.o: $(topdir)/bashtypes.h ${srcdir}/common.h $(BASHINCDIR)/chartypes.h
|
|---|
| 483 | pushd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 484 | pushd.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 485 | pushd.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 486 | pushd.o: $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 487 | pushd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 488 | pushd.o: $(BASHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
|
|---|
| 489 | read.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 490 | read.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 491 | read.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 492 | read.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 493 | read.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 494 | read.o: $(BASHINCDIR)/shtty.h
|
|---|
| 495 | read.o: $(topdir)/arrayfunc.h
|
|---|
| 496 | return.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 497 | return.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 498 | return.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 499 | return.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 500 | return.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 501 | set.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 502 | set.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
|
|---|
| 503 | set.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 504 | set.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 505 | set.o: $(BASHINCDIR)/maxpath.h $(topdir)/error.h
|
|---|
| 506 | set.o: $(topdir)/arrayfunc.h
|
|---|
| 507 | setattr.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 508 | setattr.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
|
|---|
| 509 | setattr.o: $(topdir)/quit.h $(srcdir)/common.h $(srcdir)/bashgetopt.h
|
|---|
| 510 | setattr.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 511 | setattr.o: $(topdir)/externs.h
|
|---|
| 512 | setattr.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 513 | setattr.o: $(topdir)/arrayfunc.h
|
|---|
| 514 | shift.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 515 | shift.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 516 | shift.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 517 | shift.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 518 | shift.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 519 | source.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 520 | source.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/findcmd.h
|
|---|
| 521 | source.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 522 | source.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 523 | source.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 524 | source.o: $(srcdir)/bashgetopt.h $(topdir)/flags.h $(topdir)/trap.h
|
|---|
| 525 | suspend.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 526 | suspend.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 527 | suspend.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 528 | suspend.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 529 | suspend.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 530 | suspend.o: $(topdir)/jobs.h
|
|---|
| 531 | test.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 532 | test.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 533 | test.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 534 | test.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 535 | test.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 536 | test.o: $(topdir)/test.h
|
|---|
| 537 | times.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 538 | times.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 539 | times.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 540 | times.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 541 | times.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 542 | times.o: $(BASHINCDIR)/posixtime.h
|
|---|
| 543 | trap.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 544 | trap.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
|
|---|
| 545 | trap.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
|
|---|
| 546 | trap.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 547 | trap.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 548 | trap.o: $(topdir)/findcmd.h
|
|---|
| 549 | type.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 550 | type.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 551 | type.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h
|
|---|
| 552 | type.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
|
|---|
| 553 | type.o: $(topdir)/externs.h $(topdir)/hashcmd.h
|
|---|
| 554 | type.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 555 | ulimit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 556 | ulimit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 557 | ulimit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 558 | ulimit.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 559 | ulimit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 560 | umask.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 561 | umask.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 562 | umask.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 563 | umask.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 564 | umask.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 565 | umask.o: $(BASHINCDIR)/chartypes.h
|
|---|
| 566 | wait.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 567 | wait.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 568 | wait.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 569 | wait.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 570 | wait.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 571 | wait.o: $(topdir)/jobs.h
|
|---|
| 572 | wait.o: $(BASHINCDIR)/chartypes.h
|
|---|
| 573 | shopt.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
|
|---|
| 574 | shopt.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
|
|---|
| 575 | shopt.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
|
|---|
| 576 | shopt.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
|
|---|
| 577 | shopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
|
|---|
| 578 | shopt.o: $(srcdir)/common.h $(srcdir)/bashgetopt.h
|
|---|
| 579 |
|
|---|
| 580 | complete.o: ../config.h
|
|---|
| 581 | complete.o: ${topdir}/shell.h $(topdir)/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h ${topdir}/sig.h
|
|---|
| 582 | complete.o: ${topdir}/unwind_prot.h ${topdir}/variables.h
|
|---|
| 583 | complete.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
|
|---|
| 584 | complete.o: ${topdir}/builtins.h
|
|---|
| 585 | complete.o: ${topdir}/pcomplete.h
|
|---|
| 586 | complete.o: ${srcdir}/common.h ${srcdir}/bashgetopt.h
|
|---|
| 587 |
|
|---|
| 588 | #bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
|
|---|
| 589 |
|
|---|
| 590 | # libintl dependencies
|
|---|
| 591 | bind.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 592 | break.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 593 | caller.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 594 | cd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 595 | common.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 596 | complete.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 597 | declare.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 598 | enable.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 599 | evalfile.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 600 | exec.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 601 | exit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 602 | fc.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 603 | fg_bg.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 604 | getopt.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 605 | hash.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 606 | help.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 607 | history.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 608 | inlib.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 609 | jobs.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 610 | kill.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 611 | let.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 612 | mkbuiltins.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 613 | printf.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 614 | pushd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 615 | read.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 616 | return.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 617 | set.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 618 | setattr.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 619 | shift.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 620 | shopt.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 621 | source.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 622 | suspend.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 623 | type.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 624 | ulimit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|
| 625 | umask.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|---|