Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

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