i-bash/lib/sh/Makefile.in

398 lines
15 KiB
Makefile
Raw Normal View History

1998-04-17 19:52:44 +00:00
#
# Makefile for the Bash library
#
2000-03-17 21:46:59 +00:00
#
# Copyright (C) 1998 Free Software Foundation, Inc.
# 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 2, or (at your option)
# any later version.
# 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.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1998-04-17 19:52:44 +00:00
srcdir = @srcdir@
VPATH = .:@srcdir@
topdir = @top_srcdir@
BUILD_DIR = @BUILD_DIR@
2000-03-17 21:46:59 +00:00
BASHINCDIR = ${topdir}/include
1998-04-17 19:52:44 +00:00
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
RANLIB = @RANLIB@
AR = @AR@
1999-02-19 17:11:39 +00:00
ARFLAGS = @ARFLAGS@
1998-04-17 19:52:44 +00:00
RM = rm -f
CP = cp
MV = mv
1999-02-19 17:11:39 +00:00
SHELL = @MAKE_SHELL@
1998-04-17 19:52:44 +00:00
CFLAGS = @CFLAGS@
2001-11-13 17:56:06 +00:00
LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
1998-04-17 19:52:44 +00:00
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
PROFILE_FLAGS = @PROFILE_FLAGS@
DEFS = @DEFS@
LOCAL_DEFS = @LOCAL_DEFS@
2000-03-17 21:46:59 +00:00
INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir)
1998-04-17 19:52:44 +00:00
CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
$(CFLAGS) $(CPPFLAGS)
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
1998-04-17 19:52:44 +00:00
.c.o:
$(CC) -c $(CCFLAGS) $<
# The name of the library target.
LIBRARY_NAME = libsh.a
# The C code source files for this library.
2000-03-17 21:46:59 +00:00
CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
1998-04-17 19:52:44 +00:00
strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
2000-03-17 21:46:59 +00:00
vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
2001-04-06 19:14:31 +00:00
inet_aton.c netopen.c strpbrk.c timeval.c makepath.c pathcanon.c \
pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \
2001-11-13 17:56:06 +00:00
shquote.c strtrans.c strindex.c snprintf.c mailstat.c fmtulong.c \
fmtullong.c strtoll.c strtoull.c strtoimax.c strtoumax.c
1998-04-17 19:52:44 +00:00
# The header files for this library.
HSOURCES =
# The object files contained in $(LIBRARY_NAME)
2001-11-13 17:56:06 +00:00
LIBOBJS = @LIBOBJS@
OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o \
itos.o zread.o zwrite.o shtty.o \
netopen.o timeval.o makepath.o pathcanon.o \
2001-04-06 19:14:31 +00:00
pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
2001-11-13 17:56:06 +00:00
strtrans.o strindex.o snprintf.o mailstat.o fmtulong.o \
fmtullong.o ${LIBOBJS}
1998-04-17 19:52:44 +00:00
SUPPORT = Makefile
all: $(LIBRARY_NAME)
$(LIBRARY_NAME): $(OBJECTS)
$(RM) $@
1999-02-19 17:11:39 +00:00
$(AR) $(ARFLAGS) $@ $(OBJECTS)
1998-04-17 19:52:44 +00:00
-test -n "$(RANLIB)" && $(RANLIB) $@
force:
# The rule for 'includes' is written funny so that the if statement
# always returns TRUE unless there really was an error installing the
# include files.
install:
clean:
$(RM) $(OBJECTS) $(LIBRARY_NAME)
realclean distclean maintainer-clean: clean
$(RM) Makefile
mostlyclean: clean
# Dependencies
# rules for losing makes, like SunOS
clktck.o: clktck.c
2000-03-17 21:46:59 +00:00
clock.o: clock.c
2001-11-13 17:56:06 +00:00
fmtullong.o: fmtullong.c
fmtulong.o: fmtulong.c
1998-04-17 19:52:44 +00:00
getcwd.o: getcwd.c
getenv.o: getenv.c
2000-03-17 21:46:59 +00:00
inet_aton.o: inet_aton.c
1998-04-17 19:52:44 +00:00
itos.o: itos.c
2001-11-13 17:56:06 +00:00
mailstat.o: mailstat.c
2001-04-06 19:14:31 +00:00
makepath.o: makepath.c
2000-03-17 21:46:59 +00:00
netopen.o: netopen.c
1998-04-17 19:52:44 +00:00
oslib.o: oslib.c
2001-04-06 19:14:31 +00:00
pathcanon.o: pathcanon.c
pathphys.o: pathphys.c
1999-02-19 17:11:39 +00:00
rename.o: rename.c
1998-04-17 19:52:44 +00:00
setlinebuf.o: setlinebuf.c
2000-03-17 21:46:59 +00:00
shquote.o: shquote.c
shtty.o: shtty.c
2001-11-13 17:56:06 +00:00
snprintf.o: snprintf.c
2001-04-06 19:14:31 +00:00
spell.o: spell.c
1998-04-17 19:52:44 +00:00
strcasecmp.o: strcasecmp.c
strerror.o: strerror.c
2001-04-06 19:14:31 +00:00
strindex.o: strindex.c
stringlist.o: stringlist.c
stringvec.o: stringvec.c
2000-03-17 21:46:59 +00:00
strpbrk.o: strpbrk.c
1998-04-17 19:52:44 +00:00
strtod.o: strtod.c
2001-11-13 17:56:06 +00:00
strtoimax.o: strtoimax.c
1998-04-17 19:52:44 +00:00
strtol.o: strtol.c
2001-11-13 17:56:06 +00:00
strtoll.o: strtoll.c
1998-04-17 19:52:44 +00:00
strtoul.o: strtoul.c
2001-11-13 17:56:06 +00:00
strtoull.o: strtoull.c
strtoumax.o: strtoumax.c
2001-04-06 19:14:31 +00:00
strtrans.o: strtrans.c
2000-03-17 21:46:59 +00:00
times.o: times.c
timeval.o: timeval.c
2001-04-06 19:14:31 +00:00
tmpfile.o: tmpfile.c
1998-04-17 19:52:44 +00:00
vprint.o: vprint.c
2000-03-17 21:46:59 +00:00
zread.o: zread.c
zwrite.o: zwrite.c
1998-04-17 19:52:44 +00:00
2001-11-13 17:56:06 +00:00
# dependencies for c files that include other c files
fmtullong.o: fmtulong.c
strtoll.o: strtol.c
strtoul.o: strtol.c
strtoull.o: strtol.c
1998-04-17 19:52:44 +00:00
# all files in the library depend on config.h
clktck.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
clock.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
fmtullong.o: ${BUILD_DIR}/config.h
fmtulong.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
getcwd.o: ${BUILD_DIR}/config.h
getenv.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
inet_aton.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
itos.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
mailstat.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
makepath.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
netopen.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
oslib.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
pathcanon.o: ${BUILD_DIR}/config.h
pathphys.o: ${BUILD_DIR}/config.h
1999-02-19 17:11:39 +00:00
rename.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
setlinebuf.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
shquote.o: ${BUILD_DIR}/config.h
shtty.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
snprintf.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
spell.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
strcasecmp.o: ${BUILD_DIR}/config.h
strerror.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
strindex.o: ${BUILD_DIR}/config.h
stringlist.o: ${BUILD_DIR}/config.h
stringvec.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
strpbrk.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
strtod.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
strtoimax.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
strtol.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
strtoll.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
strtoul.o: ${BUILD_DIR}/config.h
2001-11-13 17:56:06 +00:00
strtoull.o: ${BUILD_DIR}/config.h
strtoumax.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
strtrans.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
times.o: ${BUILD_DIR}/config.h
timeval.o: ${BUILD_DIR}/config.h
2001-04-06 19:14:31 +00:00
tmpfile.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
vprint.o: ${BUILD_DIR}/config.h
2000-03-17 21:46:59 +00:00
zread.o: ${BUILD_DIR}/config.h
zwrite.o: ${BUILD_DIR}/config.h
1998-04-17 19:52:44 +00:00
clktck.o: ${topdir}/bashtypes.h
2000-03-17 21:46:59 +00:00
getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
1998-04-17 19:52:44 +00:00
2000-03-17 21:46:59 +00:00
getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
2000-03-17 21:46:59 +00:00
getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
1998-04-17 19:52:44 +00:00
getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
getenv.o: ${topdir}/pathnames.h ${topdir}/externs.h
2000-03-17 21:46:59 +00:00
inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
inet_aton.o: ${BASHINCDIR}/stdc.h
itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
2001-04-06 19:14:31 +00:00
itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
2000-03-17 21:46:59 +00:00
itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
1998-04-17 19:52:44 +00:00
itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
itos.o: ${topdir}/pathnames.h ${topdir}/externs.h
2001-04-06 19:14:31 +00:00
makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
makepath.o: ${topdir}/pathnames.h ${topdir}/externs.h
2001-11-13 17:56:06 +00:00
netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
netopen.o: ${topdir}/pathnames.h ${topdir}/externs.h
2000-03-17 21:46:59 +00:00
oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
2001-04-06 19:14:31 +00:00
oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
2000-03-17 21:46:59 +00:00
oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
1998-04-17 19:52:44 +00:00
oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
oslib.o: ${topdir}/pathnames.h ${topdir}/externs.h
2000-03-17 21:46:59 +00:00
oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
2001-11-13 17:56:06 +00:00
oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
1998-04-17 19:52:44 +00:00
2001-04-06 19:14:31 +00:00
pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
pathcanon.o: ${topdir}/pathnames.h ${topdir}/externs.h
pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
2001-11-13 17:56:06 +00:00
pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
2001-04-06 19:14:31 +00:00
pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
pathphys.o: ${topdir}/pathnames.h ${topdir}/externs.h
pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
2001-11-13 17:56:06 +00:00
pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
2001-04-06 19:14:31 +00:00
2000-03-17 21:46:59 +00:00
rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
1999-02-19 17:11:39 +00:00
2001-11-13 17:56:06 +00:00
setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
2000-03-17 21:46:59 +00:00
shtty.o: ${BASHINCDIR}/shtty.h
shtty.o: ${BASHINCDIR}/stdc.h
2001-11-13 17:56:06 +00:00
snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
snprintf.o: ${BASHINCDIR}/typemax.h
2001-04-06 19:14:31 +00:00
spell.o: ${topdir}/bashtypes.h
spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
spell.o: ${BASHINCDIR}/ansi_stdlib.h
strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
1998-04-17 19:52:44 +00:00
strerror.o: ${topdir}/bashtypes.h
2001-04-06 19:14:31 +00:00
strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
2000-03-17 21:46:59 +00:00
strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
1998-04-17 19:52:44 +00:00
strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
strerror.o: ${topdir}/pathnames.h ${topdir}/externs.h
2001-04-06 19:14:31 +00:00
strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
2001-04-06 19:14:31 +00:00
stringlist.o: ${topdir}/bashansi.h
stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
stringlist.o: ${topdir}/pathnames.h ${topdir}/externs.h
2001-11-13 17:56:06 +00:00
stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
2001-04-06 19:14:31 +00:00
stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
stringvec.o: ${topdir}/pathnames.h ${topdir}/externs.h
2000-03-17 21:46:59 +00:00
strpbrk.o: ${BASHINCDIR}/stdc.h
1998-04-17 19:52:44 +00:00
strtod.o: ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
strtoimax.o: ${BASHINCDIR}/stdc.h
1998-04-17 19:52:44 +00:00
strtol.o: ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
strtol.o: ${BASHINCDIR}/typemax.h
strtoll.o: ${topdir}/bashansi.h
strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
strtoll.o: ${BASHINCDIR}/typemax.h
1998-04-17 19:52:44 +00:00
strtoul.o: ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
strtoul.o: ${BASHINCDIR}/typemax.h
strtoull.o: ${topdir}/bashansi.h
strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
strtoull.o: ${BASHINCDIR}/typemax.h
strtoumax.o: ${BASHINCDIR}/stdc.h
2000-03-17 21:46:59 +00:00
2001-04-06 19:14:31 +00:00
strtrans.o: ${topdir}/bashansi.h
2001-11-13 17:56:06 +00:00
strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
2001-04-06 19:14:31 +00:00
strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
2001-11-13 17:56:06 +00:00
strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
2001-04-06 19:14:31 +00:00
strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
strtrans.o: ${topdir}/pathnames.h ${topdir}/externs.h
2000-03-17 21:46:59 +00:00
times.o: ${BASHINCDIR}/systimes.h
times.o: ${BASHINCDIR}/posixtime.h
timeval.o: ${BASHINCDIR}/posixtime.h
2001-04-06 19:14:31 +00:00
tmpfile.o: ${topdir}/bashtypes.h
tmpfile.o: ${BASHINCDIR}/posixstat.h
tmpfile.o: ${BASHINCDIR}/filecntl.h
2000-03-17 21:46:59 +00:00
clock.o: ${BASHINCDIR}/posixtime.h
2001-11-13 17:56:06 +00:00
mailstat.o: ${topdir}/bashansi.h
mailstat.o: ${topdir}/bashtypes.h
mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
mailstat.o: ${BASHINCDIR}/posixstat.h
mailstat.o: ${BASHINCDIR}/posixdir.h
mailstat.o: ${BASHINCDIR}/maxpath.h
fmtulong.o: ${topdir}/bashansi.h
fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
fmtulong.o: ${BASHINCDIR}/chartypes.h
fmtulong.o: ${BASHINCDIR}/stdc.h
fmtulong.o: ${BASHINCDIR}/typemax.h
fmtullong.o: ${topdir}/bashansi.h
fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
fmtullong.o: ${BASHINCDIR}/chartypes.h
fmtullong.o: ${BASHINCDIR}/stdc.h
fmtullong.o: ${BASHINCDIR}/typemax.h