[Winbash-checkins] CVS: winbash/builtins Makefile,1.1.1.1,1.2
Brought to you by:
enricobrunetta,
xks
From: Enrico B. <enr...@us...> - 2002-03-09 04:17:17
|
Update of /cvsroot/winbash/winbash/builtins In directory usw-pr-cvs1:/tmp/cvs-serv29292/builtins Modified Files: Makefile Log Message: Fixed more cr/lf problems. Let's see if the wincvs client allows me to remove the lf this time.... Index: Makefile =================================================================== RCS file: /cvsroot/winbash/winbash/builtins/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile 9 Mar 2002 03:39:12 -0000 1.1.1.1 +++ Makefile 9 Mar 2002 04:17:14 -0000 1.2 @@ -1,259 +1,260 @@ -# -# This Makefile for building builtins.lib is in -*- text -*- for Emacs. -# - -CC=cl.exe -nologo -MAKE_LIB_COMMAND=lib.exe -nologo $^ -out:$@ -MKBUILTINS = mkbuiltins.exe -SHELL = /bin/sh -RM = rm -f -CP = cp - -CPPDEFS = -DWIN32 -D_WINDOWS -D__NT_VC__ -DHAVE_STRING_H -CPPFLAGS += -I. -CPPFLAGS += -I../lib -CPPFLAGS += -I../dum_inc -CPPFLAGS += -I../ -CPPFLAGS += $(CPPDEFS) -CFLAGS = -MT - -ifdef RELEASE -CFLAGS += -O2 -else -CFLAGS += -Od -Zi -Fdbuiltins.pdb -CPPFLAGS += -D_DEBUG -endif - -srcdir = . -VPATH = .:$(srcdir) - -.SUFFIXES: -.SUFFIXES: .def .c .obj -# How to make a .obj file from a .def file. -.def.obj: - $(RM) $@ - ./$(MKBUILTINS) $(DIRECTDEFINE) $< - $(CC) -c $(CPPFLAGS) $(CPPDEFS) $(CFLAGS) $*.c -# $(RM) $*.c - -# How to make a .c file from a .def file. -.def.c: - $(RM) $@ - ./$(MKBUILTINS) $(DIRECTDEFINE) $< - -.c.obj: - $(RM) $@ - $(CC) -c $(CPPFLAGS) $(CFLAGS) $< - -DEFS = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \ - $(srcdir)/builtin.def $(srcdir)/cd.def $(srcdir)/colon.def \ - $(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 \ - $(srcdir)/inlib.def - -STATIC_SOURCE = common.c getopt.c bashgetopt.c getopt.h - -OFILES = builtins.obj getopt.obj bashgetopt.obj common.obj $(DEFS:%.def=%.obj) - -CREATED_FILES = builtext.h builtins.c $(MKBUILTINS) $(DEFS:%.def=%.c) - -all: builtins.lib - - -builtins.lib : $(OFILES) - $(MAKE_LIB_COMMAND) - -builtext.h builtins.c: $(MKBUILTINS) $(DEFS) - $(RM) builtext.h builtins.c - ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \ - -noproduction $(DIRECTDEFINE) $(DEFS) - -$(MKBUILTINS): $(srcdir)/mkbuiltins.c ../config.h - $(CC) $(CPPFLAGS) $(CPPDEFS) $(CFLAGS) -o $(MKBUILTINS) $(srcdir)/mkbuiltins.c - -ulimit.obj: ulimit.def pipesize.h - - -documentation: builtins.texi - -$(OFILES): $(MKBUILTINS) ../config.h - -builtins.texi: $(MKBUILTINS) - ./$(MKBUILTINS) -documentonly $(DEFS) - -clean: - $(RM) $(OFILES) $(CREATED_FILES) mkbuiltins.obj mkbuiltins.pdb mkbuiltins.ilk builtins.lib builtins.pdb - -alias.obj: alias.def -bind.obj: bind.def -break.obj: break.def -builtin.obj: builtin.def -cd.obj: cd.def -colon.obj: colon.def -command.obj: command.def -declare.obj: declare.def -echo.obj: echo.def -enable.obj: enable.def -eval.obj: eval.def -exec.obj: exec.def -exit.obj: exit.def -fc.obj: fc.def -fg_bg.obj: fg_bg.def -hash.obj: hash.def -help.obj: help.def -history.obj: history.def -inlib.obj: inlib.def -jobs.obj: jobs.def -kill.obj: kill.def -let.obj: let.def -read.obj: read.def -return.obj: return.def -set.obj: set.def -setattr.obj: setattr.def -shift.obj: shift.def -source.obj: source.def -suspend.obj: suspend.def -test.obj: test.def -times.obj: times.def -trap.obj: trap.def -type.obj: type.def -umask.obj: umask.def -wait.obj: wait.def -getopts.obj: getopts.def -reserved.obj: reserved.def - -common.obj: ../shell.h ../command.h ../config.h ../memalloc.h ../general.h -common.obj: ../variables.h ../input.h hashcom.h ../bashhist.h -common.obj: ../quit.h ../unwind_prot.h ../maxpath.h ../jobs.h ../builtins.h -common.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -common.obj: ../execute_cmd.h ../error.h -alias.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -alias.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -alias.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h -bind.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -bind.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -bind.obj: ../maxpath.h -bind.obj: ../shell.h ../unwind_prot.h ../variables.h bashgetopt.h -break.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -break.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -break.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -builtin.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -builtin.obj: ../quit.h common.h ../maxpath.h -builtin.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -builtin.obj: ../shell.h ../unwind_prot.h ../variables.h -cd.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -cd.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -cd.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h -command.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -command.obj: ../quit.h bashgetopt.h ../maxpath.h -command.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -command.obj: ../shell.h ../unwind_prot.h ../variables.h -declare.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -declare.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -declare.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -echo.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -echo.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -echo.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -enable.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -enable.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -enable.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -eval.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -eval.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -eval.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -exec.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -exec.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -exec.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../execute_cmd.h -exec.obj: ../maxpath.h ../flags.h -exit.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -exit.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -exit.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -fc.obj: ../builtins.h ../command.h bashgetopt.h ../bashhist.h -fc.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -fc.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -fc.obj: ../flags.h ../unwind_prot.h ../variables.h ../shell.h ../maxpath.h -fg_bg.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -fg_bg.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -fg_bg.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -getopts.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -getopts.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -getopts.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -hash.obj: ../builtins.h ../command.h ../quit.h ../execute_cmd.h -hash.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -hash.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h -help.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -help.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -help.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -history.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -history.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -history.obj: ../filecntl.h ../shell.h ../unwind_prot.h ../variables.h -history.obj: ../bashhist.h ../maxpath.h -inlib.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -inlib.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -inlib.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -jobs.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -jobs.obj: ../quit.h bashgetopt.h ../maxpath.h -jobs.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -jobs.obj: ../shell.h ../unwind_prot.h ../variables.h -kill.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -kill.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -kill.obj: ../shell.h ../trap.h ../unwind_prot.h ../variables.h ../maxpath.h -let.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -let.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -let.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -read.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -read.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -read.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -return.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -return.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -return.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -set.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -set.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -set.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -setattr.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -setattr.obj: ../quit.h common.h bashgetopt.h ../maxpath.h -setattr.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -setattr.obj: ../shell.h ../unwind_prot.h ../variables.h -shift.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -shift.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -shift.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -source.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -source.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -source.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -suspend.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -suspend.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -suspend.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -test.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -test.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -test.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -times.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -times.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -times.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -trap.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -trap.obj: ../quit.h common.h ../maxpath.h -trap.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -trap.obj: ../shell.h ../unwind_prot.h ../variables.h ../execute_cmd.h -type.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -type.obj: ../quit.h common.h ../maxpath.h -type.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -type.obj: ../shell.h ../unwind_prot.h ../variables.h -ulimit.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -ulimit.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -ulimit.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -umask.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -umask.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -umask.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -wait.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h -wait.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h -wait.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h -bashgetopt.obj: ../bashansi.h ../ansi_stdlib.h -mkbuiltins.obj: ../bashansi.h ../ansi_stdlib.h -fc.obj: ../bashansi.h ../ansi_stdlib.h -bind.obj: ../lib/readline/chardefs.h ../lib/readline/readline.h ../lib/readline/keymaps.h +# +# This Makefile for building builtins.lib is in -*- text -*- for Emacs. +# +# + +CC=cl.exe -nologo +MAKE_LIB_COMMAND=lib.exe -nologo $^ -out:$@ +MKBUILTINS = mkbuiltins.exe +SHELL = /bin/sh +RM = rm -f +CP = cp + +CPPDEFS = -DWIN32 -D_WINDOWS -D__NT_VC__ -DHAVE_STRING_H +CPPFLAGS += -I. +CPPFLAGS += -I../lib +CPPFLAGS += -I../dum_inc +CPPFLAGS += -I../ +CPPFLAGS += $(CPPDEFS) +CFLAGS = -MT + +ifdef RELEASE +CFLAGS += -O2 +else +CFLAGS += -Od -Zi -Fdbuiltins.pdb +CPPFLAGS += -D_DEBUG +endif + +srcdir = . +VPATH = .:$(srcdir) + +.SUFFIXES: +.SUFFIXES: .def .c .obj +# How to make a .obj file from a .def file. +.def.obj: + $(RM) $@ + ./$(MKBUILTINS) $(DIRECTDEFINE) $< + $(CC) -c $(CPPFLAGS) $(CPPDEFS) $(CFLAGS) $*.c +# $(RM) $*.c + +# How to make a .c file from a .def file. +.def.c: + $(RM) $@ + ./$(MKBUILTINS) $(DIRECTDEFINE) $< + +.c.obj: + $(RM) $@ + $(CC) -c $(CPPFLAGS) $(CFLAGS) $< + +DEFS = $(srcdir)/alias.def $(srcdir)/bind.def $(srcdir)/break.def \ + $(srcdir)/builtin.def $(srcdir)/cd.def $(srcdir)/colon.def \ + $(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 \ + $(srcdir)/inlib.def + +STATIC_SOURCE = common.c getopt.c bashgetopt.c getopt.h + +OFILES = builtins.obj getopt.obj bashgetopt.obj common.obj $(DEFS:%.def=%.obj) + +CREATED_FILES = builtext.h builtins.c $(MKBUILTINS) $(DEFS:%.def=%.c) + +all: builtins.lib + + +builtins.lib : $(OFILES) + $(MAKE_LIB_COMMAND) + +builtext.h builtins.c: $(MKBUILTINS) $(DEFS) + $(RM) builtext.h builtins.c + ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \ + -noproduction $(DIRECTDEFINE) $(DEFS) + +$(MKBUILTINS): $(srcdir)/mkbuiltins.c ../config.h + $(CC) $(CPPFLAGS) $(CPPDEFS) $(CFLAGS) -o $(MKBUILTINS) $(srcdir)/mkbuiltins.c + +ulimit.obj: ulimit.def pipesize.h + + +documentation: builtins.texi + +$(OFILES): $(MKBUILTINS) ../config.h + +builtins.texi: $(MKBUILTINS) + ./$(MKBUILTINS) -documentonly $(DEFS) + +clean: + $(RM) $(OFILES) $(CREATED_FILES) mkbuiltins.obj mkbuiltins.pdb mkbuiltins.ilk builtins.lib builtins.pdb + +alias.obj: alias.def +bind.obj: bind.def +break.obj: break.def +builtin.obj: builtin.def +cd.obj: cd.def +colon.obj: colon.def +command.obj: command.def +declare.obj: declare.def +echo.obj: echo.def +enable.obj: enable.def +eval.obj: eval.def +exec.obj: exec.def +exit.obj: exit.def +fc.obj: fc.def +fg_bg.obj: fg_bg.def +hash.obj: hash.def +help.obj: help.def +history.obj: history.def +inlib.obj: inlib.def +jobs.obj: jobs.def +kill.obj: kill.def +let.obj: let.def +read.obj: read.def +return.obj: return.def +set.obj: set.def +setattr.obj: setattr.def +shift.obj: shift.def +source.obj: source.def +suspend.obj: suspend.def +test.obj: test.def +times.obj: times.def +trap.obj: trap.def +type.obj: type.def +umask.obj: umask.def +wait.obj: wait.def +getopts.obj: getopts.def +reserved.obj: reserved.def + +common.obj: ../shell.h ../command.h ../config.h ../memalloc.h ../general.h +common.obj: ../variables.h ../input.h hashcom.h ../bashhist.h +common.obj: ../quit.h ../unwind_prot.h ../maxpath.h ../jobs.h ../builtins.h +common.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +common.obj: ../execute_cmd.h ../error.h +alias.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +alias.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +alias.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h +bind.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +bind.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +bind.obj: ../maxpath.h +bind.obj: ../shell.h ../unwind_prot.h ../variables.h bashgetopt.h +break.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +break.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +break.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +builtin.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +builtin.obj: ../quit.h common.h ../maxpath.h +builtin.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +builtin.obj: ../shell.h ../unwind_prot.h ../variables.h +cd.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +cd.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +cd.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h +command.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +command.obj: ../quit.h bashgetopt.h ../maxpath.h +command.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +command.obj: ../shell.h ../unwind_prot.h ../variables.h +declare.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +declare.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +declare.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +echo.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +echo.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +echo.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +enable.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +enable.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +enable.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +eval.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +eval.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +eval.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +exec.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +exec.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +exec.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../execute_cmd.h +exec.obj: ../maxpath.h ../flags.h +exit.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +exit.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +exit.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +fc.obj: ../builtins.h ../command.h bashgetopt.h ../bashhist.h +fc.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +fc.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +fc.obj: ../flags.h ../unwind_prot.h ../variables.h ../shell.h ../maxpath.h +fg_bg.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +fg_bg.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +fg_bg.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +getopts.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +getopts.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +getopts.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +hash.obj: ../builtins.h ../command.h ../quit.h ../execute_cmd.h +hash.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +hash.obj: ../shell.h ../unwind_prot.h ../variables.h common.h ../maxpath.h +help.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +help.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +help.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +history.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +history.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +history.obj: ../filecntl.h ../shell.h ../unwind_prot.h ../variables.h +history.obj: ../bashhist.h ../maxpath.h +inlib.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +inlib.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +inlib.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +jobs.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +jobs.obj: ../quit.h bashgetopt.h ../maxpath.h +jobs.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +jobs.obj: ../shell.h ../unwind_prot.h ../variables.h +kill.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +kill.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +kill.obj: ../shell.h ../trap.h ../unwind_prot.h ../variables.h ../maxpath.h +let.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +let.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +let.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +read.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +read.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +read.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +return.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +return.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +return.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +set.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +set.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +set.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +setattr.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +setattr.obj: ../quit.h common.h bashgetopt.h ../maxpath.h +setattr.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +setattr.obj: ../shell.h ../unwind_prot.h ../variables.h +shift.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +shift.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +shift.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +source.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +source.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +source.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +suspend.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +suspend.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +suspend.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +test.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +test.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +test.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +times.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +times.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +times.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +trap.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +trap.obj: ../quit.h common.h ../maxpath.h +trap.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +trap.obj: ../shell.h ../unwind_prot.h ../variables.h ../execute_cmd.h +type.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +type.obj: ../quit.h common.h ../maxpath.h +type.obj: ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +type.obj: ../shell.h ../unwind_prot.h ../variables.h +ulimit.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +ulimit.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +ulimit.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +umask.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +umask.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +umask.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +wait.obj: ../command.h ../config.h ../memalloc.h ../error.h ../general.h +wait.obj: ../quit.h ../dispose_cmd.h ../make_cmd.h ../subst.h ../externs.h +wait.obj: ../shell.h ../unwind_prot.h ../variables.h ../maxpath.h +bashgetopt.obj: ../bashansi.h ../ansi_stdlib.h +mkbuiltins.obj: ../bashansi.h ../ansi_stdlib.h +fc.obj: ../bashansi.h ../ansi_stdlib.h +bind.obj: ../lib/readline/chardefs.h ../lib/readline/readline.h ../lib/readline/keymaps.h |