i-bash/builtins/Makefile.in

695 lines
34 KiB
Makefile
Raw Normal View History

1996-12-23 17:02:34 +00:00
# This Makefile for building libbuiltins.a is in -*- text -*- for Emacs.
2000-03-17 21:46:59 +00:00
#
# Copyright (C) 1996-2015 Free Software Foundation, Inc.
2000-03-17 21:46:59 +00:00
2009-01-12 13:36:28 +00:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2000-03-17 21:46:59 +00:00
2009-01-12 13:36:28 +00:00
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2000-03-17 21:46:59 +00:00
2009-01-12 13:36:28 +00:00
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2000-03-17 21:46:59 +00:00
2006-10-10 14:15:34 +00:00
PACKAGE = @PACKAGE_NAME@
2004-07-27 13:29:18 +00:00
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_VERSION = @PACKAGE_VERSION@
1996-12-23 17:02:34 +00:00
#
1999-02-19 17:11:39 +00:00
SHELL = @MAKE_SHELL@
1997-06-05 14:59:13 +00:00
RANLIB = @RANLIB@
1996-12-23 17:02:34 +00:00
CC = @CC@
1998-04-17 19:52:44 +00:00
CC_FOR_BUILD = @CC_FOR_BUILD@
1996-12-23 17:02:34 +00:00
AR = @AR@
1999-02-19 17:11:39 +00:00
ARFLAGS = @ARFLAGS@
1996-12-23 17:02:34 +00:00
RM = rm -f
CP = cp
2000-03-17 21:46:59 +00:00
EXEEXT = @EXEEXT@
2002-07-17 14:10:11 +00:00
prefix = @prefix@
1996-12-23 17:02:34 +00:00
srcdir = @srcdir@
VPATH = @srcdir@
1996-12-23 17:02:34 +00:00
topdir = @top_srcdir@
2009-01-12 13:36:28 +00:00
datarootdir = @datarootdir@
1996-12-23 17:02:34 +00:00
includedir = @includedir@
2002-07-17 14:10:11 +00:00
datadir = @datadir@
2009-01-12 13:36:28 +00:00
localedir = @localedir@
2002-07-17 14:10:11 +00:00
loadablesdir = @loadablesdir@
2002-07-17 14:10:11 +00:00
# Support an alternate destination root directory for package building
DESTDIR =
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
1998-04-17 19:52:44 +00:00
BUILD_DIR = @BUILD_DIR@
1996-12-23 17:02:34 +00:00
2004-07-27 13:29:18 +00:00
LIBBUILD = ${BUILD_DIR}/lib
1998-04-17 19:52:44 +00:00
PROFILE_FLAGS = @PROFILE_FLAGS@
1997-06-05 14:59:13 +00:00
CFLAGS = @CFLAGS@
2005-12-07 14:08:12 +00:00
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@
1997-06-05 14:59:13 +00:00
CPPFLAGS = @CPPFLAGS@
2002-07-17 14:10:11 +00:00
CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
1996-12-23 17:02:34 +00:00
DEFS = @DEFS@
1997-06-05 14:59:13 +00:00
LOCAL_DEFS = @LOCAL_DEFS@
2002-07-17 14:10:11 +00:00
LIBS = @LIBS@
1998-04-17 19:52:44 +00:00
LDFLAGS = @LDFLAGS@ $(LOCAL_LDFLAGS) $(CFLAGS)
2009-01-12 13:36:28 +00:00
LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD)
1998-04-17 19:52:44 +00:00
LOCAL_LDFLAGS = @LOCAL_LDFLAGS@
LIBS_FOR_BUILD = @LIBS_FOR_BUILD@
#LIBS_FOR_BUILD = $(LIBS)
1996-12-23 17:02:34 +00:00
2000-03-17 21:46:59 +00:00
BASHINCDIR = ${topdir}/include
2001-11-13 17:56:06 +00:00
RL_INCLUDEDIR = @RL_INCLUDEDIR@
2004-07-27 13:29:18 +00:00
INTL_LIBSRC = ${topdir}/lib/intl
INTL_BUILDDIR = ${LIBBUILD}/intl
2009-01-12 13:36:28 +00:00
INTL_LIBDIR = ${INTL_BUILDDIR}
INTL_LIBRARY = ${INTL_BUILDDIR}/libintl.a
2004-07-27 13:29:18 +00:00
INTL_INC = @INTL_INC@
2009-01-12 13:36:28 +00:00
INTL_DEP = @INTL_DEP@
2004-07-27 13:29:18 +00:00
LIBINTL_H = @LIBINTL_H@
2002-07-17 14:10:11 +00:00
HELPDIR = @HELPDIR@
MKDIRS = ${topdir}/support/mkdirs
HELPFILES_TARGET = @HELPFILES_TARGET@
2004-07-27 13:29:18 +00:00
INCLUDES = -I. -I.. @RL_INCLUDE@ -I$(topdir) -I$(BASHINCDIR) -I$(topdir)/lib -I$(srcdir) ${INTL_INC}
1996-12-23 17:02:34 +00:00
2002-07-17 14:10:11 +00:00
BASE_CCFLAGS = ${PROFILE_FLAGS} $(DEFS) $(LOCAL_DEFS) $(SYSTEM_FLAGS) \
${INCLUDES} $(LOCAL_CFLAGS)
2001-11-13 17:56:06 +00:00
2002-07-17 14:10:11 +00:00
CCFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(CFLAGS)
CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
2001-11-13 17:56:06 +00:00
GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
-Wcast-align -Wstrict-prototypes -Wconversion \
-Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
1996-12-23 17:02:34 +00:00
2000-03-17 21:46:59 +00:00
MKBUILTINS = mkbuiltins$(EXEEXT)
1996-12-23 17:02:34 +00:00
DIRECTDEFINE = -D $(srcdir)
2002-07-17 14:10:11 +00:00
HELPDIRDEFINE = @HELPDIRDEFINE@
2005-12-07 14:08:12 +00:00
HELPSTRINGS = @HELPSTRINGS@
1996-12-23 17:02:34 +00:00
# xxx this is bad style
RL_LIBSRC = $(topdir)/lib/readline
.SUFFIXES:
.SUFFIXES: .def .c .o
# How to make a .o file from a .def file.
.def.o:
$(RM) $@
./$(MKBUILTINS) $(DIRECTDEFINE) $<
$(CC) -c $(CCFLAGS) $*.c || ( $(RM) $*.c ; exit 1 )
$(RM) $*.c
# How to make a .c file from a .def file.
.def.c:
$(RM) $@
./$(MKBUILTINS) $(DIRECTDEFINE) $<
# default rule for making a .o file from a .c file
.c.o:
$(RM) $@
$(CC) -c $(CCFLAGS) $<
DEFSRC = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \
2004-07-27 13:29:18 +00:00
$(srcdir)/builtin.def $(srcdir)/caller.def \
$(srcdir)/cd.def $(srcdir)/colon.def \
1996-12-23 17:02:34 +00:00
$(srcdir)/command.def $(srcdir)/declare.def $(srcdir)/echo.def \
$(srcdir)/enable.def $(srcdir)/eval.def $(srcdir)/getopts.def \
$(srcdir)/exec.def $(srcdir)/exit.def $(srcdir)/fc.def \
$(srcdir)/fg_bg.def $(srcdir)/hash.def $(srcdir)/help.def \
$(srcdir)/history.def $(srcdir)/jobs.def $(srcdir)/kill.def \
$(srcdir)/let.def $(srcdir)/read.def $(srcdir)/return.def \
$(srcdir)/set.def $(srcdir)/setattr.def $(srcdir)/shift.def \
$(srcdir)/source.def $(srcdir)/suspend.def $(srcdir)/test.def \
$(srcdir)/times.def $(srcdir)/trap.def $(srcdir)/type.def \
$(srcdir)/ulimit.def $(srcdir)/umask.def $(srcdir)/wait.def \
1998-04-17 19:52:44 +00:00
$(srcdir)/reserved.def $(srcdir)/pushd.def $(srcdir)/shopt.def \
2009-01-12 13:36:28 +00:00
$(srcdir)/printf.def $(srcdir)/complete.def $(srcdir)/mapfile.def
1996-12-23 17:02:34 +00:00
STATIC_SOURCE = common.c evalstring.c evalfile.c getopt.c bashgetopt.c \
getopt.h
OFILES = builtins.o \
2004-07-27 13:29:18 +00:00
alias.o bind.o break.o builtin.o caller.o cd.o colon.o command.o \
1996-12-23 17:02:34 +00:00
common.o declare.o echo.o enable.o eval.o evalfile.o \
2009-01-12 13:36:28 +00:00
evalstring.o exec.o exit.o fc.o fg_bg.o hash.o help.o history.o \
jobs.o kill.o let.o mapfile.o \
1996-12-23 17:02:34 +00:00
pushd.o read.o return.o set.o setattr.o shift.o source.o \
suspend.o test.o times.o trap.o type.o ulimit.o umask.o \
2000-03-17 21:46:59 +00:00
wait.o getopts.o shopt.o printf.o getopt.o bashgetopt.o complete.o
1996-12-23 17:02:34 +00:00
CREATED_FILES = builtext.h builtins.c psize.aux pipesize.h tmpbuiltins.c \
tmpbuiltins.h
CREATED_OBJECTS = tmpbuiltins.o gen-helpfiles.o mkbuiltins.o
1996-12-23 17:02:34 +00:00
all: $(MKBUILTINS) libbuiltins.a $(HELPFILES_TARGET)
targets: libbuiltins.a $(HELPFILES_TARGET)
1996-12-23 17:02:34 +00:00
1998-04-17 19:52:44 +00:00
libbuiltins.a: $(MKBUILTINS) $(OFILES) builtins.o
1996-12-23 17:02:34 +00:00
$(RM) $@
1999-02-19 17:11:39 +00:00
$(AR) $(ARFLAGS) $@ $(OFILES)
1996-12-23 17:02:34 +00:00
-$(RANLIB) $@
tmpbuiltins.c: $(MKBUILTINS) $(DEFSRC)
./$(MKBUILTINS) -externfile tmpbuiltins.h -structfile $@ \
-noproduction -nofunctions \
$(DIRECTDEFINE) $(HELPSTRINGS) $(DEFSRC)
tmpbuiltins.h: tmpbuiltins.c
gen-helpfiles.o: ../config.h
gen-helpfiles.o: gen-helpfiles.c
$(RM) $@
$(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
gen-helpfiles: tmpbuiltins.o gen-helpfiles.o
$(CC_FOR_BUILD) ${CCFLAGS_FOR_BUILD} $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD)
1996-12-23 17:02:34 +00:00
builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC)
1998-04-17 19:52:44 +00:00
@-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi
@-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi
1996-12-23 17:02:34 +00:00
./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \
2005-12-07 14:08:12 +00:00
-noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC)
1999-02-19 17:11:39 +00:00
@-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \
1998-04-17 19:52:44 +00:00
mv old-builtext.h builtext.h; \
else \
$(RM) old-builtext.h; \
fi
1999-02-19 17:11:39 +00:00
@-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \
1998-04-17 19:52:44 +00:00
mv old-builtins.c builtins.c; \
else \
$(RM) old-builtins.c; \
fi
1996-12-23 17:02:34 +00:00
helpdoc: gen-helpfiles
./gen-helpfiles ${HELPDIRDEFINE}
2002-07-17 14:10:11 +00:00
install-help:
@-if test -n "${HELPDIR}" && test -d helpfiles ; then \
2006-10-10 14:15:34 +00:00
test -d $(DESTDIR)${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
2005-12-07 14:08:12 +00:00
( for f in helpfiles/*; do \
2002-07-17 14:10:11 +00:00
echo installing $$f; \
${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
done; ) ; \
fi
install: @HELPINSTALL@
1998-04-17 19:52:44 +00:00
mkbuiltins.o: ../config.h
mkbuiltins.o: mkbuiltins.c
$(RM) $@
2001-11-13 17:56:06 +00:00
$(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $<
1998-04-17 19:52:44 +00:00
2000-03-17 21:46:59 +00:00
mkbuiltins$(EXEEXT): mkbuiltins.o
2002-07-17 14:10:11 +00:00
$(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $(MKBUILTINS) mkbuiltins.o $(LIBS_FOR_BUILD)
1996-12-23 17:02:34 +00:00
# rules for deficient makes, like SunOS
1998-04-17 19:52:44 +00:00
mkbuiltins.o: mkbuiltins.c
builtins.o: builtins.c
1996-12-23 17:02:34 +00:00
common.o: common.c
bashgetopt.o: bashgetopt.c
getopt.o: getopt.c
1998-04-17 19:52:44 +00:00
evalstring.o: evalstring.c
evalfile.o: evalfile.c
tmpbuiltins.o: tmpbuiltins.c
gen-helpfiles.o: gen-helpfiles.c
1996-12-23 17:02:34 +00:00
1997-09-22 20:22:27 +00:00
ulimit.o: pipesize.h
1996-12-23 17:02:34 +00:00
pipesize.h: psize.aux
1999-02-19 17:11:39 +00:00
$(SHELL) $(srcdir)/psize.sh > $@
1996-12-23 17:02:34 +00:00
# Technically this is wrong; the pipe size should be for the target system,
# not the build host.
1996-12-23 17:02:34 +00:00
psize.aux: psize.c
$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(srcdir)/psize.c
1996-12-23 17:02:34 +00:00
documentation: builtins.texi
builtins.texi: $(MKBUILTINS)
./$(MKBUILTINS) -documentonly $(DEFSRC)
clean:
$(RM) $(OFILES) $(CREATED_FILES) libbuiltins.a
$(RM) $(MKBUILTINS) gen-helpfiles $(CREATED_OBJECTS)
2002-07-17 14:10:11 +00:00
-test -d helpfiles && $(RM) -r helpfiles
1996-12-23 17:02:34 +00:00
mostlyclean:
$(RM) $(OFILES) libbuiltins.a
distclean maintainer-clean: clean
$(RM) Makefile
2002-07-17 14:10:11 +00:00
$(OFILES): $(MKBUILTINS) ../config.h
2004-07-27 13:29:18 +00:00
../version.h: ../config.h ../Makefile Makefile
-( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
# maintainer special - for now
po: builtins.c
xgettext -L C -o $(topdir)/po/builtins.pot --keyword='N_' builtins.c 2>/dev/null
2009-01-12 13:36:28 +00:00
${LIBINTL_H}:
@echo making $@ in ${INTL_BUILDDIR}
@(cd ${INTL_BUILDDIR} && \
$(MAKE) $(MFLAGS) libintl.h) || exit 1
2004-07-27 13:29:18 +00:00
# dependencies
1996-12-23 17:02:34 +00:00
alias.o: alias.def
bind.o: bind.def
break.o: break.def
builtin.o: builtin.def
2004-07-27 13:29:18 +00:00
caller.o: caller.def
1996-12-23 17:02:34 +00:00
cd.o: cd.def
colon.o: colon.def
command.o: command.def
declare.o: declare.def
echo.o: echo.def
enable.o: enable.def
eval.o: eval.def
exec.o: exec.def
exit.o: exit.def
fc.o: fc.def
fg_bg.o: fg_bg.def
hash.o: hash.def
help.o: help.def
history.o: history.def
jobs.o: jobs.def
kill.o: kill.def
let.o: let.def
2009-01-12 13:36:28 +00:00
mapfile.o: mapfile.def
1998-04-17 19:52:44 +00:00
printf.o: printf.def
1996-12-23 17:02:34 +00:00
pushd.o: pushd.def
read.o: read.def
return.o: return.def
set.o: set.def
setattr.o: setattr.def
shift.o: shift.def
1997-09-22 20:22:27 +00:00
shopt.o: shopt.def
1996-12-23 17:02:34 +00:00
source.o: source.def
suspend.o: suspend.def
test.o: test.def
times.o: times.def
trap.o: trap.def
type.o: type.def
1998-04-17 19:52:44 +00:00
ulimit.o: ulimit.def
1996-12-23 17:02:34 +00:00
umask.o: umask.def
wait.o: wait.def
getopts.o: getopts.def
reserved.o: reserved.def
2000-03-17 21:46:59 +00:00
complete.o: complete.def
1996-12-23 17:02:34 +00:00
1997-06-05 14:59:13 +00:00
# C files
2000-03-17 21:46:59 +00:00
bashgetopt.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
bashgetopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h
2001-11-13 17:56:06 +00:00
bashgetopt.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
bashgetopt.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
1997-06-05 14:59:13 +00:00
bashgetopt.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
bashgetopt.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
2004-07-27 13:29:18 +00:00
bashgetopt.o: ../pathnames.h $(topdir)/externs.h $(srcdir)/common.h
2001-11-13 17:56:06 +00:00
bashgetopt.o: $(BASHINCDIR)/chartypes.h
2000-03-17 21:46:59 +00:00
common.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
common.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
1997-06-05 14:59:13 +00:00
common.o: $(topdir)/sig.h $(topdir)/command.h
2001-11-13 17:56:06 +00:00
common.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/stdc.h $(BASHINCDIR)/memalloc.h
common.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
1997-06-05 14:59:13 +00:00
common.o: $(topdir)/siglist.h $(topdir)/bashhist.h $(topdir)/quit.h
2000-03-17 21:46:59 +00:00
common.o: $(topdir)/unwind_prot.h $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h
1997-06-05 14:59:13 +00:00
common.o: $(topdir)/builtins.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
common.o: $(topdir)/subst.h $(topdir)/execute_cmd.h $(topdir)/error.h
2004-07-27 13:29:18 +00:00
common.o: $(topdir)/externs.h ../pathnames.h ./builtext.h
2001-11-13 17:56:06 +00:00
common.o: $(BASHINCDIR)/chartypes.h
2000-03-17 21:46:59 +00:00
evalfile.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h ${BASHINCDIR}/filecntl.h
evalfile.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
evalfile.o: $(topdir)/shell.h $(topdir)/syntax.h ../config.h $(topdir)/bashjmp.h
2001-11-13 17:56:06 +00:00
evalfile.o: $(topdir)/command.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h
evalfile.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
1997-06-05 14:59:13 +00:00
evalfile.o: $(topdir)/unwind_prot.h $(topdir)/dispose_cmd.h
evalfile.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/sig.h
2004-07-27 13:29:18 +00:00
evalfile.o: ../pathnames.h $(topdir)/externs.h
1997-06-05 14:59:13 +00:00
evalfile.o: $(topdir)/jobs.h $(topdir)/builtins.h $(topdir)/flags.h
evalfile.o: $(topdir)/input.h $(topdir)/execute_cmd.h
evalfile.o: $(topdir)/bashhist.h $(srcdir)/common.h
2000-03-17 21:46:59 +00:00
evalstring.o: ../config.h $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
evalstring.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(BASHINCDIR)/posixjmp.h
1997-06-05 14:59:13 +00:00
evalstring.o: $(topdir)/sig.h $(topdir)/command.h $(topdir)/siglist.h
2001-11-13 17:56:06 +00:00
evalstring.o: $(BASHINCDIR)/memalloc.h $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
1997-06-05 14:59:13 +00:00
evalstring.o: $(topdir)/quit.h $(topdir)/unwind_prot.h
2000-03-17 21:46:59 +00:00
evalstring.o: $(BASHINCDIR)/maxpath.h $(topdir)/jobs.h $(topdir)/builtins.h
1997-06-05 14:59:13 +00:00
evalstring.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
2011-11-21 20:51:19 -05:00
evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h
#evalstring.o: $(topdir)/y.tab.h
2000-03-17 21:46:59 +00:00
getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
2001-04-06 19:14:31 +00:00
getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
2001-11-13 17:56:06 +00:00
getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
2000-03-17 21:46:59 +00:00
getopt.o: $(topdir)/quit.h $(BASHINCDIR)/maxpath.h $(topdir)/unwind_prot.h
1997-06-05 14:59:13 +00:00
getopt.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2004-07-27 13:29:18 +00:00
getopt.o: $(topdir)/sig.h ../pathnames.h $(topdir)/externs.h
getopt.o: $(srcdir)/getopt.h
2000-03-17 21:46:59 +00:00
mkbuiltins.o: ../config.h $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
mkbuiltins.o: ${BASHINCDIR}/filecntl.h
mkbuiltins.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h
1997-06-05 14:59:13 +00:00
# def files
2000-03-17 21:46:59 +00:00
alias.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
alias.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
alias.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
alias.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/common.h
2001-11-13 17:56:06 +00:00
alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
alias.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
bind.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
bind.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
bind.o: $(topdir)/subst.h $(topdir)/externs.h $(srcdir)/bashgetopt.h
2001-11-13 17:56:06 +00:00
bind.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h $(topdir)/bashline.h
bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
bind.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
break.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
break.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
break.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
break.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
break.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
builtin.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
builtin.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
builtin.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
builtin.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2001-11-13 17:56:06 +00:00
builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
builtin.o: $(srcdir)/bashgetopt.h ../pathnames.h
2004-07-27 13:29:18 +00:00
caller.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
caller.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
caller.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2004-07-27 13:29:18 +00:00
caller.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
caller.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ./builtext.h
2011-11-21 20:51:19 -05:00
caller.o: ${BASHINCDIR}/chartypes.h $(topdir)/bashtypes.h ../pathnames.h
2000-03-17 21:46:59 +00:00
cd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
2001-11-13 17:56:06 +00:00
cd.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(topdir)/dispose_cmd.h
1996-12-23 17:02:34 +00:00
cd.o: $(topdir)/make_cmd.h $(topdir)/subst.h $(topdir)/externs.h
2001-11-13 17:56:06 +00:00
cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
cd.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
cd.o: $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
command.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
command.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
2000-03-17 21:46:59 +00:00
command.o: $(topdir)/quit.h $(srcdir)/bashgetopt.h $(BASHINCDIR)/maxpath.h
command.o: $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
command.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2001-11-13 17:56:06 +00:00
command.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
command.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
declare.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
declare.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
declare.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
declare.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
declare.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
declare.o: $(topdir)/arrayfunc.h $(srcdir)/bashgetopt.h $(topdir)/flags.h
2011-11-21 20:51:19 -05:00
declare.o: ./builtext.h ../pathnames.h
2000-03-17 21:46:59 +00:00
echo.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
2001-11-13 17:56:06 +00:00
echo.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
echo.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2001-11-13 17:56:06 +00:00
echo.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
echo.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
2000-03-17 21:46:59 +00:00
enable.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
enable.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
enable.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
enable.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2001-11-13 17:56:06 +00:00
enable.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
enable.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
2000-03-17 21:46:59 +00:00
enable.o: $(topdir)/pcomplete.h
eval.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
eval.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
eval.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
eval.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2001-11-13 17:56:06 +00:00
eval.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
eval.o: $(BASHINCDIR)/maxpath.h ../pathnames.h
1997-06-05 14:59:13 +00:00
exec.o: $(topdir)/bashtypes.h
2000-03-17 21:46:59 +00:00
exec.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
exec.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
exec.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
exec.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/flags.h
2001-11-13 17:56:06 +00:00
exec.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2000-03-17 21:46:59 +00:00
exec.o: $(srcdir)/common.h $(topdir)/execute_cmd.h $(BASHINCDIR)/maxpath.h
2011-11-21 20:51:19 -05:00
exec.o: $(topdir)/findcmd.h $(topdir)/jobs.h ../pathnames.h
1997-06-05 14:59:13 +00:00
exit.o: $(topdir)/bashtypes.h
2000-03-17 21:46:59 +00:00
exit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
exit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
exit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2005-12-07 14:08:12 +00:00
exit.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/jobs.h
2001-11-13 17:56:06 +00:00
exit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
exit.o: $(BASHINCDIR)/maxpath.h ./builtext.h ../pathnames.h
2000-03-17 21:46:59 +00:00
fc.o: $(topdir)/bashtypes.h $(BASHINCDIR)/posixstat.h
1996-12-23 17:02:34 +00:00
fc.o: $(topdir)/builtins.h $(topdir)/command.h $(srcdir)/bashgetopt.h
fc.o: $(topdir)/bashhist.h
2000-03-17 21:46:59 +00:00
fc.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
2001-11-13 17:56:06 +00:00
fc.o: $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
fc.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2001-04-06 19:14:31 +00:00
fc.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/shell.h $(topdir)/syntax.h
2001-11-13 17:56:06 +00:00
fc.o: $(topdir)/flags.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
fc.o: $(topdir)/bashansi.h $(BASHINCDIR)/ansi_stdlib.h $(BASHINCDIR)/chartypes.h
2011-11-21 20:51:19 -05:00
fc.o: ../pathnames.h
2002-07-17 14:10:11 +00:00
fg_bg.o: $(topdir)/bashtypes.h $(srcdir)/bashgetopt.h
2000-03-17 21:46:59 +00:00
fg_bg.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
fg_bg.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
fg_bg.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
fg_bg.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
fg_bg.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
fg_bg.o: $(topdir)/jobs.h ../pathnames.h
2000-03-17 21:46:59 +00:00
getopts.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
getopts.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
getopts.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
getopts.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
getopts.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
getopts.o: ../pathnames.h
1996-12-23 17:02:34 +00:00
hash.o: $(topdir)/builtins.h $(topdir)/command.h $(topdir)/quit.h
hash.o: $(topdir)/findcmd.h $(topdir)/hashlib.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
hash.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
hash.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
hash.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
hash.o: $(srcdir)/common.h $(BASHINCDIR)/maxpath.h ../pathnames.h
2000-03-17 21:46:59 +00:00
help.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
help.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
help.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
2000-03-17 21:46:59 +00:00
help.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
help.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
help.o: ${srcdir}/common.h $(topdir)/sig.h ../pathnames.h
1997-06-05 14:59:13 +00:00
history.o: $(topdir)/bashtypes.h
2000-03-17 21:46:59 +00:00
history.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
history.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
history.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
history.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2001-04-06 19:14:31 +00:00
history.o: ${BASHINCDIR}/filecntl.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
2001-11-13 17:56:06 +00:00
history.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/bashhist.h $(BASHINCDIR)/maxpath.h
2011-11-21 20:51:19 -05:00
history.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
inlib.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
inlib.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
inlib.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2000-03-17 21:46:59 +00:00
inlib.o: $(BASHINCDIR)/maxpath.h $(topdir)/subst.h $(topdir)/externs.h
2011-11-21 20:51:19 -05:00
inlib.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h ../pathnames.h
2000-03-17 21:46:59 +00:00
jobs.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
2001-11-13 17:56:06 +00:00
jobs.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/quit.h $(srcdir)/bashgetopt.h
2005-12-07 14:08:12 +00:00
jobs.o: $(BASHINCDIR)/maxpath.h $(topdir)/externs.h $(topdir)/jobs.h
1996-12-23 17:02:34 +00:00
jobs.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2001-11-13 17:56:06 +00:00
jobs.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
jobs.o: $(topdir)/sig.h ../pathnames.h
2000-03-17 21:46:59 +00:00
kill.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/error.h
2001-11-13 17:56:06 +00:00
kill.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
kill.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2001-04-06 19:14:31 +00:00
kill.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/trap.h $(topdir)/unwind_prot.h
2001-11-13 17:56:06 +00:00
kill.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/maxpath.h
2011-11-21 20:51:19 -05:00
kill.o: $(topdir)/jobs.h ../pathnames.h
2000-03-17 21:46:59 +00:00
let.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
let.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
let.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
let.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
let.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
let.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
printf.o: ../config.h $(BASHINCDIR)/memalloc.h $(topdir)/bashjmp.h
2001-11-13 17:56:06 +00:00
printf.o: $(topdir)/command.h $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1998-04-17 19:52:44 +00:00
printf.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
printf.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2004-07-27 13:29:18 +00:00
printf.o: ../pathnames.h $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h
2001-11-13 17:56:06 +00:00
printf.o: $(topdir)/variables.h $(topdir)/conftypes.h $(BASHINCDIR)/stdc.h $(srcdir)/bashgetopt.h
printf.o: $(topdir)/bashtypes.h ${srcdir}/common.h $(BASHINCDIR)/chartypes.h
printf.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
2011-11-21 20:51:19 -05:00
printf.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
pushd.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
pushd.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
pushd.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
pushd.o: $(topdir)/subst.h $(topdir)/externs.h $(topdir)/sig.h
2001-11-13 17:56:06 +00:00
pushd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2000-03-17 21:46:59 +00:00
pushd.o: $(BASHINCDIR)/maxpath.h $(srcdir)/common.h ./builtext.h
2011-11-21 20:51:19 -05:00
pushd.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
read.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
read.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
read.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
2000-03-17 21:46:59 +00:00
read.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
read.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
read.o: $(BASHINCDIR)/shtty.h $(topdir)/sig.h
read.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
2011-11-21 20:51:19 -05:00
read.o: $(topdir)/arrayfunc.h ../pathnames.h
2000-03-17 21:46:59 +00:00
return.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
return.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
return.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
return.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
return.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
return.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
set.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
set.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/subst.h $(topdir)/externs.h
1996-12-23 17:02:34 +00:00
set.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
2001-11-13 17:56:06 +00:00
set.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
set.o: $(BASHINCDIR)/maxpath.h $(topdir)/error.h $(topdir)/sig.h
2011-11-21 20:51:19 -05:00
set.o: $(topdir)/arrayfunc.h ../pathnames.h
2000-03-17 21:46:59 +00:00
setattr.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
setattr.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(BASHINCDIR)/maxpath.h
1996-12-23 17:02:34 +00:00
setattr.o: $(topdir)/quit.h $(srcdir)/common.h $(srcdir)/bashgetopt.h
setattr.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
setattr.o: $(topdir)/externs.h $(topdir)/flags.h $(topdir)/sig.h
2001-11-13 17:56:06 +00:00
setattr.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
setattr.o: $(topdir)/arrayfunc.h ../pathnames.h
2000-03-17 21:46:59 +00:00
shift.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
shift.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
shift.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
shift.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
shift.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
shift.o: ../pathnames.h
shopt.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
shopt.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
shopt.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
shopt.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
shopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
shopt.o: $(srcdir)/common.h $(srcdir)/bashgetopt.h ../pathnames.h
shopt.o: $(topdir)/bashhist.h $(topdir)/bashline.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
source.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
source.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/findcmd.h
source.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
source.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
source.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2004-07-27 13:29:18 +00:00
source.o: $(srcdir)/bashgetopt.h $(topdir)/flags.h $(topdir)/trap.h
2011-11-21 20:51:19 -05:00
source.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
suspend.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
suspend.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
suspend.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
suspend.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
suspend.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
suspend.o: $(topdir)/jobs.h ../pathnames.h
2000-03-17 21:46:59 +00:00
test.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
test.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
test.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
test.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
test.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
test.o: $(topdir)/test.h ../pathnames.h
2000-03-17 21:46:59 +00:00
times.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
times.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
times.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
times.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
times.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
times.o: $(BASHINCDIR)/posixtime.h ../pathnames.h
2000-03-17 21:46:59 +00:00
trap.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
trap.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/externs.h
trap.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
trap.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2001-11-13 17:56:06 +00:00
trap.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
trap.o: $(topdir)/findcmd.h ../pathnames.h
2000-03-17 21:46:59 +00:00
type.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
type.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
type.o: $(topdir)/quit.h $(srcdir)/common.h $(BASHINCDIR)/maxpath.h $(topdir)/sig.h
1996-12-23 17:02:34 +00:00
type.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
2011-11-21 20:51:19 -05:00
type.o: $(topdir)/externs.h $(topdir)/hashcmd.h ../pathnames.h
2001-11-13 17:56:06 +00:00
type.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2000-03-17 21:46:59 +00:00
ulimit.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
ulimit.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
ulimit.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
ulimit.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
ulimit.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
ulimit.o: ../pathnames.h
2000-03-17 21:46:59 +00:00
umask.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
umask.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
umask.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
umask.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
umask.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
umask.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
2000-03-17 21:46:59 +00:00
wait.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
2001-11-13 17:56:06 +00:00
wait.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
1996-12-23 17:02:34 +00:00
wait.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h
2000-03-17 21:46:59 +00:00
wait.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
2001-11-13 17:56:06 +00:00
wait.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
wait.o: $(topdir)/jobs.h $(topdir)/sig.h
2011-11-21 20:51:19 -05:00
wait.o: $(BASHINCDIR)/chartypes.h ../pathnames.h
1996-12-23 17:02:34 +00:00
2011-11-21 20:51:19 -05:00
complete.o: ../config.h ../pathnames.h
2001-04-06 19:14:31 +00:00
complete.o: ${topdir}/shell.h $(topdir)/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h ${topdir}/sig.h
2000-03-17 21:46:59 +00:00
complete.o: ${topdir}/unwind_prot.h ${topdir}/variables.h
complete.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2000-03-17 21:46:59 +00:00
complete.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
complete.o: ${topdir}/builtins.h ${topdir}/general.h
complete.o: ${topdir}/bashtypes.h ${BASHINCDIR}/chartypes.h ${topdir}/xmalloc.h
2000-03-17 21:46:59 +00:00
complete.o: ${topdir}/pcomplete.h
complete.o: ${srcdir}/common.h ${srcdir}/bashgetopt.h
2009-01-12 13:36:28 +00:00
mapfile.o: $(topdir)/command.h ../config.h $(BASHINCDIR)/memalloc.h
mapfile.o: $(topdir)/error.h $(topdir)/general.h $(topdir)/xmalloc.h
mapfile.o: $(topdir)/quit.h $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/sig.h
2009-01-12 13:36:28 +00:00
mapfile.o: $(topdir)/subst.h $(topdir)/externs.h $(BASHINCDIR)/maxpath.h
mapfile.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/variables.h $(topdir)/conftypes.h
2011-11-21 20:51:19 -05:00
mapfile.o: $(topdir)/arrayfunc.h ../pathnames.h
2000-03-17 21:46:59 +00:00
1996-12-23 17:02:34 +00:00
#bind.o: $(RL_LIBSRC)chardefs.h $(RL_LIBSRC)readline.h $(RL_LIBSRC)keymaps.h
2004-07-27 13:29:18 +00:00
# libintl dependencies
bind.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
break.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
caller.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
cd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
common.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
complete.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
declare.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
enable.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
evalfile.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
exec.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
exit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
fc.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
fg_bg.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
getopt.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
hash.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
help.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
history.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
inlib.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
jobs.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
kill.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
let.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
2009-01-12 13:36:28 +00:00
mapfile.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
mkbuiltins.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
2004-07-27 13:29:18 +00:00
printf.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
pushd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
read.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
return.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
set.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
setattr.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
shift.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
shopt.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
source.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
suspend.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
type.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
ulimit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
umask.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h