mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
Makefile.in: Convert to ./ throughout.
* Makefile.in: Convert to ./ throughout. Rebuild dependencies with explicit build rules. (VPATH): Remove. (.c.o): Poison. * configure.ac (pexecute, LIBOBJS): Add ./ . * maint-tool: Build dependencies with explicit rules. From-SVN: r76366
This commit is contained in:
parent
7bff636b07
commit
398b3debc4
@ -1,3 +1,12 @@
|
|||||||
|
2004-01-22 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
|
* Makefile.in: Convert to ./ throughout. Rebuild dependencies
|
||||||
|
with explicit build rules.
|
||||||
|
(VPATH): Remove.
|
||||||
|
(.c.o): Poison.
|
||||||
|
* configure.ac (pexecute, LIBOBJS): Add ./ .
|
||||||
|
* maint-tool: Build dependencies with explicit rules.
|
||||||
|
|
||||||
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
|
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
|
||||||
|
|
||||||
* strdup.c (strdup): Constify the argument.
|
* strdup.c (strdup): Constify the argument.
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
|
|
||||||
libiberty_topdir = @libiberty_topdir@
|
libiberty_topdir = @libiberty_topdir@
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
VPATH = @srcdir@
|
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
|
||||||
@ -70,8 +69,8 @@ PICFLAG =
|
|||||||
|
|
||||||
MAKEOVERRIDES =
|
MAKEOVERRIDES =
|
||||||
|
|
||||||
TARGETLIB = libiberty.a
|
TARGETLIB = ./libiberty.a
|
||||||
TESTLIB = testlib.a
|
TESTLIB = ./testlib.a
|
||||||
|
|
||||||
LIBOBJS = @LIBOBJS@
|
LIBOBJS = @LIBOBJS@
|
||||||
|
|
||||||
@ -118,19 +117,19 @@ installcheck: installcheck-subdir
|
|||||||
INCDIR=$(srcdir)/$(MULTISRCTOP)../include
|
INCDIR=$(srcdir)/$(MULTISRCTOP)../include
|
||||||
|
|
||||||
COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
|
COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
|
||||||
|
|
||||||
|
# Just to make sure we don't use a built-in rule with VPATH
|
||||||
.c.o:
|
.c.o:
|
||||||
if [ x"$(PICFLAG)" != x ]; then \
|
false
|
||||||
$(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
|
|
||||||
else true; fi
|
|
||||||
$(COMPILE.c) $< $(OUTPUT_OPTION)
|
|
||||||
|
|
||||||
# NOTE: If you add new files to the library, add them to this list
|
# NOTE: If you add new files to the library, add them to this list
|
||||||
# (alphabetical), and add them to REQUIRED_OFILES, or
|
# (alphabetical), and add them to REQUIRED_OFILES, or
|
||||||
# CONFIGURED_OFILES and funcs in configure.ac.
|
# CONFIGURED_OFILES and funcs in configure.ac. Also run "make maint-deps"
|
||||||
|
# to build the new rules.
|
||||||
CFILES = alloca.c argv.c asprintf.c atexit.c \
|
CFILES = alloca.c argv.c asprintf.c atexit.c \
|
||||||
basename.c bcmp.c bcopy.c bsearch.c bzero.c \
|
basename.c bcmp.c bcopy.c bsearch.c bzero.c \
|
||||||
calloc.c choose-temp.c clock.c concat.c cp-demangle.c \
|
calloc.c choose-temp.c clock.c concat.c cp-demangle.c \
|
||||||
cp-demint.c cplus-dem.c \
|
cp-demint.c cplus-dem.c \
|
||||||
dyn-string.c \
|
dyn-string.c \
|
||||||
fdmatch.c ffs.c fibheap.c floatformat.c fnmatch.c \
|
fdmatch.c ffs.c fibheap.c floatformat.c fnmatch.c \
|
||||||
getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
|
getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
|
||||||
@ -158,45 +157,45 @@ CFILES = alloca.c argv.c asprintf.c atexit.c \
|
|||||||
|
|
||||||
# These are always included in the library. The first four are listed
|
# These are always included in the library. The first four are listed
|
||||||
# first and by compile time to optimize parallel builds.
|
# first and by compile time to optimize parallel builds.
|
||||||
REQUIRED_OFILES = regex.o cplus-dem.o cp-demangle.o cp-demint.o md5.o \
|
REQUIRED_OFILES = ./regex.o ./cplus-dem.o ./cp-demangle.o ./cp-demint.o ./md5.o \
|
||||||
alloca.o argv.o \
|
./alloca.o ./argv.o \
|
||||||
choose-temp.o concat.o \
|
./choose-temp.o ./concat.o \
|
||||||
dyn-string.o \
|
./dyn-string.o \
|
||||||
fdmatch.o fibheap.o floatformat.o fnmatch.o \
|
./fdmatch.o ./fibheap.o ./floatformat.o ./fnmatch.o \
|
||||||
getopt.o getopt1.o getpwd.o getruntime.o \
|
./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o \
|
||||||
hashtab.o hex.o \
|
./hashtab.o ./hex.o \
|
||||||
lbasename.o \
|
./lbasename.o \
|
||||||
lrealpath.o \
|
./lrealpath.o \
|
||||||
make-relative-prefix.o \
|
./make-relative-prefix.o \
|
||||||
make-temp-file.o \
|
./make-temp-file.o \
|
||||||
objalloc.o obstack.o \
|
./objalloc.o ./obstack.o \
|
||||||
partition.o physmem.o @pexecute@ \
|
./partition.o ./physmem.o @pexecute@ \
|
||||||
safe-ctype.o sort.o spaces.o splay-tree.o strerror.o \
|
./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o \
|
||||||
strsignal.o \
|
./strsignal.o \
|
||||||
ternary.o \
|
./ternary.o \
|
||||||
xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o
|
./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o
|
||||||
|
|
||||||
# These are all the objects that configure may add to the library via
|
# These are all the objects that configure may add to the library via
|
||||||
# $funcs or EXTRA_OFILES. This list exists here only for "make
|
# $funcs or EXTRA_OFILES. This list exists here only for "make
|
||||||
# maint-missing" and "make check".
|
# maint-missing" and "make check".
|
||||||
CONFIGURED_OFILES = asprintf.o atexit.o \
|
CONFIGURED_OFILES = ./asprintf.o ./atexit.o \
|
||||||
basename.o bcmp.o bcopy.o bsearch.o bzero.o \
|
./basename.o ./bcmp.o ./bcopy.o ./bsearch.o ./bzero.o \
|
||||||
calloc.o clock.o copysign.o \
|
./calloc.o ./clock.o ./copysign.o \
|
||||||
_doprnt.o \
|
./_doprnt.o \
|
||||||
ffs.o \
|
./ffs.o \
|
||||||
getcwd.o getpagesize.o \
|
./getcwd.o ./getpagesize.o \
|
||||||
index.o insque.o \
|
./index.o ./insque.o \
|
||||||
memchr.o memcmp.o memcpy.o memmove.o mempcpy.o memset.o mkstemps.o \
|
./memchr.o ./memcmp.o ./memcpy.o ./memmove.o ./mempcpy.o ./memset.o ./mkstemps.o \
|
||||||
pex-djgpp.o pex-mpw.o pex-msdos.o pex-os2.o \
|
./pex-djgpp.o ./pex-mpw.o ./pex-msdos.o ./pex-os2.o \
|
||||||
pex-unix.o pex-win32.o \
|
./pex-unix.o ./pex-win32.o \
|
||||||
putenv.o \
|
./putenv.o \
|
||||||
random.o rename.o rindex.o \
|
./random.o ./rename.o ./rindex.o \
|
||||||
setenv.o sigsetmask.o snprintf.o stpcpy.o stpncpy.o strcasecmp.o \
|
./setenv.o ./sigsetmask.o ./snprintf.o ./stpcpy.o ./stpncpy.o ./strcasecmp.o \
|
||||||
strchr.o strdup.o strncasecmp.o strncmp.o strrchr.o strstr.o \
|
./strchr.o ./strdup.o ./strncasecmp.o ./strncmp.o ./strrchr.o ./strstr.o \
|
||||||
strtod.o strtol.o strtoul.o \
|
./strtod.o ./strtol.o ./strtoul.o \
|
||||||
tmpnam.o \
|
./tmpnam.o \
|
||||||
vasprintf.o vfork.o vfprintf.o vprintf.o vsnprintf.o vsprintf.o \
|
./vasprintf.o ./vfork.o ./vfprintf.o ./vprintf.o ./vsnprintf.o ./vsprintf.o \
|
||||||
waitpid.o
|
./waitpid.o
|
||||||
|
|
||||||
# These files are installed if the library has been configured to do so.
|
# These files are installed if the library has been configured to do so.
|
||||||
INSTALLED_HEADERS = \
|
INSTALLED_HEADERS = \
|
||||||
@ -390,8 +389,8 @@ Makefile: $(srcdir)/Makefile.in config.status
|
|||||||
# Depending on Makefile makes sure that config.status has been re-run
|
# Depending on Makefile makes sure that config.status has been re-run
|
||||||
# if needed. This prevents problems with parallel builds.
|
# if needed. This prevents problems with parallel builds.
|
||||||
config.h: stamp-h ; @true
|
config.h: stamp-h ; @true
|
||||||
stamp-h: config.in config.status Makefile
|
stamp-h: $(srcdir)/config.in config.status Makefile
|
||||||
CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
|
CONFIG_FILES= CONFIG_HEADERS=config.h:$(srcdir)/config.in $(SHELL) ./config.status
|
||||||
|
|
||||||
config.status: $(srcdir)/configure $(srcdir)/config.table
|
config.status: $(srcdir)/configure $(srcdir)/config.table
|
||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
@ -415,113 +414,643 @@ $(CONFIGURED_OFILES): stamp-picdir
|
|||||||
# The dependencies in the remainder of this file are automatically
|
# The dependencies in the remainder of this file are automatically
|
||||||
# generated by "make maint-deps". Manual edits will be lost.
|
# generated by "make maint-deps". Manual edits will be lost.
|
||||||
|
|
||||||
_doprnt.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
|
./_doprnt.o: $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \
|
||||||
alloca.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
argv.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
asprintf.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
atexit.o: config.h
|
|
||||||
basename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
|
||||||
$(INCDIR)/safe-ctype.h
|
$(INCDIR)/safe-ctype.h
|
||||||
bsearch.o: config.h $(INCDIR)/ansidecl.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
calloc.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \
|
||||||
choose-temp.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
else true; fi
|
||||||
clock.o: config.h
|
$(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION)
|
||||||
concat.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
copysign.o: $(INCDIR)/ansidecl.h
|
./alloca.o: $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \
|
||||||
cp-demangle.o: config.h $(INCDIR)/ansidecl.h $(srcdir)/cp-demangle.h \
|
|
||||||
$(INCDIR)/demangle.h $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h \
|
|
||||||
$(INCDIR)/libiberty.h
|
$(INCDIR)/libiberty.h
|
||||||
cp-demint.o: config.h $(INCDIR)/ansidecl.h $(srcdir)/cp-demangle.h \
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
$(INCDIR)/demangle.h $(INCDIR)/libiberty.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \
|
||||||
cplus-dem.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
|
else true; fi
|
||||||
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
|
$(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION)
|
||||||
dyn-string.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/dyn-string.h \
|
|
||||||
$(INCDIR)/libiberty.h
|
./argv.o: $(srcdir)/argv.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
fdmatch.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
fibheap.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/fibheap.h \
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \
|
||||||
$(INCDIR)/libiberty.h
|
else true; fi
|
||||||
floatformat.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/floatformat.h \
|
$(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION)
|
||||||
$(INCDIR)/libiberty.h
|
|
||||||
fnmatch.o: config.h $(INCDIR)/fnmatch.h $(INCDIR)/safe-ctype.h
|
./asprintf.o: $(srcdir)/asprintf.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
getcwd.o: config.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
getopt.o: config.h $(INCDIR)/getopt.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \
|
||||||
getopt1.o: config.h $(INCDIR)/getopt.h
|
else true; fi
|
||||||
getpagesize.o: config.h
|
$(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION)
|
||||||
getpwd.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
getruntime.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
./atexit.o: $(srcdir)/atexit.c config.h
|
||||||
hashtab.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/hashtab.h \
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
$(INCDIR)/libiberty.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \
|
||||||
hex.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./basename.o: $(srcdir)/basename.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
||||||
$(INCDIR)/safe-ctype.h
|
$(INCDIR)/safe-ctype.h
|
||||||
lbasename.o: $(INCDIR)/ansidecl.h $(INCDIR)/filenames.h \
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \
|
||||||
lrealpath.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
else true; fi
|
||||||
make-relative-prefix.o: config.h $(INCDIR)/ansidecl.h \
|
$(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./bcmp.o: $(srcdir)/bcmp.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./bcopy.o: $(srcdir)/bcopy.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./bsearch.o: $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./bzero.o: $(srcdir)/bzero.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./calloc.o: $(srcdir)/calloc.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./choose-temp.o: $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \
|
||||||
$(INCDIR)/libiberty.h
|
$(INCDIR)/libiberty.h
|
||||||
make-temp-file.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
md5.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \
|
||||||
memchr.o: $(INCDIR)/ansidecl.h
|
else true; fi
|
||||||
memcmp.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION)
|
||||||
memcpy.o: $(INCDIR)/ansidecl.h
|
|
||||||
memmove.o: $(INCDIR)/ansidecl.h
|
./clock.o: $(srcdir)/clock.c config.h
|
||||||
mempcpy.o: $(INCDIR)/ansidecl.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
memset.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \
|
||||||
mkstemps.o: config.h $(INCDIR)/ansidecl.h
|
else true; fi
|
||||||
objalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/objalloc.h
|
$(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION)
|
||||||
obstack.o: config.h $(INCDIR)/obstack.h
|
|
||||||
partition.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
./concat.o: $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \
|
||||||
$(INCDIR)/partition.h
|
$(INCDIR)/libiberty.h
|
||||||
pex-djgpp.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
$(srcdir)/pex-common.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \
|
||||||
pex-mpw.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
else true; fi
|
||||||
$(srcdir)/pex-common.h
|
$(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION)
|
||||||
pex-msdos.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
|
||||||
$(srcdir)/pex-common.h $(INCDIR)/safe-ctype.h
|
./copysign.o: $(srcdir)/copysign.c $(INCDIR)/ansidecl.h
|
||||||
pex-os2.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
$(srcdir)/pex-common.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \
|
||||||
pex-unix.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
else true; fi
|
||||||
$(srcdir)/pex-common.h
|
$(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION)
|
||||||
pex-win32.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
|
||||||
$(srcdir)/pex-common.h
|
./cp-demangle.o: $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \
|
||||||
physmem.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
$(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
|
||||||
putenv.o: config.h $(INCDIR)/ansidecl.h
|
$(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h
|
||||||
random.o: $(INCDIR)/ansidecl.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \
|
||||||
rename.o: config.h $(INCDIR)/ansidecl.h
|
else true; fi
|
||||||
safe-ctype.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
|
$(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION)
|
||||||
setenv.o: config.h $(INCDIR)/ansidecl.h
|
|
||||||
sigsetmask.o: $(INCDIR)/ansidecl.h
|
./cp-demint.o: $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \
|
||||||
snprintf.o: $(INCDIR)/ansidecl.h
|
$(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
|
||||||
sort.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./cplus-dem.o: $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./dyn-string.o: $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/dyn-string.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./fdmatch.o: $(srcdir)/fdmatch.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./ffs.o: $(srcdir)/ffs.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./fibheap.o: $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/fibheap.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./floatformat.o: $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/floatformat.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./fnmatch.o: $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getcwd.o: $(srcdir)/getcwd.c config.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getopt.o: $(srcdir)/getopt.c config.h $(INCDIR)/getopt.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getopt1.o: $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getpagesize.o: $(srcdir)/getpagesize.c config.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getpwd.o: $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./getruntime.o: $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./hashtab.o: $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./hex.o: $(srcdir)/hex.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./index.o: $(srcdir)/index.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./insque.o: $(srcdir)/insque.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./lbasename.o: $(srcdir)/lbasename.c $(INCDIR)/ansidecl.h $(INCDIR)/filenames.h \
|
||||||
|
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./lrealpath.o: $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./make-relative-prefix.o: $(srcdir)/make-relative-prefix.c config.h \
|
||||||
|
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./make-temp-file.o: $(srcdir)/make-temp-file.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./md5.o: $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./memchr.o: $(srcdir)/memchr.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./memcmp.o: $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./memcpy.o: $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./memmove.o: $(srcdir)/memmove.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./mempcpy.o: $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./memset.o: $(srcdir)/memset.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./mkstemps.o: $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./mpw.o: $(srcdir)/mpw.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/mpw.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/mpw.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./msdos.o: $(srcdir)/msdos.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./objalloc.o: $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/objalloc.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./obstack.o: $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./partition.o: $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(INCDIR)/partition.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-djgpp.o: $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-mpw.o: $(srcdir)/pex-mpw.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-mpw.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-mpw.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-msdos.o: $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-os2.o: $(srcdir)/pex-os2.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-os2.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-os2.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-unix.o: $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./pex-win32.o: $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./physmem.o: $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./putenv.o: $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./random.o: $(srcdir)/random.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./regex.o: $(srcdir)/regex.c config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./rename.o: $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./rindex.o: $(srcdir)/rindex.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./safe-ctype.o: $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./setenv.o: $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./sigsetmask.o: $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./snprintf.o: $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./sort.o: $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
||||||
$(INCDIR)/sort.h
|
$(INCDIR)/sort.h
|
||||||
spaces.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
splay-tree.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \
|
||||||
$(INCDIR)/splay-tree.h
|
else true; fi
|
||||||
stpcpy.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION)
|
||||||
stpncpy.o: $(INCDIR)/ansidecl.h
|
|
||||||
strcasecmp.o: $(INCDIR)/ansidecl.h
|
./spaces.o: $(srcdir)/spaces.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
strchr.o: $(INCDIR)/ansidecl.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
strdup.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \
|
||||||
strerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
else true; fi
|
||||||
strncasecmp.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION)
|
||||||
strncmp.o: $(INCDIR)/ansidecl.h
|
|
||||||
strrchr.o: $(INCDIR)/ansidecl.h
|
./splay-tree.o: $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \
|
||||||
strsignal.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
$(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h
|
||||||
strtod.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
strtol.o: config.h $(INCDIR)/safe-ctype.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \
|
||||||
strtoul.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
|
else true; fi
|
||||||
ternary.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
|
$(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION)
|
||||||
$(INCDIR)/ternary.h
|
|
||||||
vasprintf.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
./stpcpy.o: $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h
|
||||||
vfork.o: $(INCDIR)/ansidecl.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
vfprintf.o: $(INCDIR)/ansidecl.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \
|
||||||
vprintf.o: $(INCDIR)/ansidecl.h
|
else true; fi
|
||||||
vsnprintf.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
$(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION)
|
||||||
vsprintf.o: $(INCDIR)/ansidecl.h
|
|
||||||
waitpid.o: config.h
|
./stpncpy.o: $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h
|
||||||
xatexit.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
xexit.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \
|
||||||
xmalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
else true; fi
|
||||||
xmemdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
$(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION)
|
||||||
xstrdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
|
||||||
xstrerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
./strcasecmp.o: $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strchr.o: $(srcdir)/strchr.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strdup.o: $(srcdir)/strdup.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strerror.o: $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strncasecmp.o: $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strncmp.o: $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strrchr.o: $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strsignal.o: $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strstr.o: $(srcdir)/strstr.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strtod.o: $(srcdir)/strtod.c $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strtol.o: $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./strtoul.o: $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/safe-ctype.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./ternary.o: $(srcdir)/ternary.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h $(INCDIR)/ternary.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/ternary.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/ternary.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./tmpnam.o: $(srcdir)/tmpnam.c
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vasprintf.o: $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vfork.o: $(srcdir)/vfork.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vfprintf.o: $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vprintf.o: $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vsnprintf.o: $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./vsprintf.o: $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./waitpid.o: $(srcdir)/waitpid.c config.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xatexit.o: $(srcdir)/xatexit.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xexit.o: $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xmalloc.o: $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xmemdup.o: $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xstrdup.o: $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
./xstrerror.o: $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \
|
||||||
|
$(INCDIR)/libiberty.h
|
||||||
|
if [ x"$(PICFLAG)" != x ]; then \
|
||||||
|
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \
|
||||||
|
else true; fi
|
||||||
|
$(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION)
|
||||||
|
|
||||||
|
@ -477,11 +477,11 @@ fi
|
|||||||
|
|
||||||
# Figure out which version of pexecute to use.
|
# Figure out which version of pexecute to use.
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
*-*-mingw* | *-*-winnt*) pexecute=pex-win32.o ;;
|
*-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
|
||||||
*-*-msdosdjgpp*) pexecute=pex-djgpp.o ;;
|
*-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
|
||||||
*-*-msdos*) pexecute=pex-msdos.o ;;
|
*-*-msdos*) pexecute=./pex-msdos.o ;;
|
||||||
*-*-os2-emx*) pexecute=pex-os2.o ;;
|
*-*-os2-emx*) pexecute=./pex-os2.o ;;
|
||||||
*) pexecute=pex-unix.o ;;
|
*) pexecute=./pex-unix.o ;;
|
||||||
esac
|
esac
|
||||||
AC_SUBST(pexecute)
|
AC_SUBST(pexecute)
|
||||||
|
|
||||||
@ -496,6 +496,15 @@ else
|
|||||||
fi
|
fi
|
||||||
AC_SUBST(INSTALL_DEST)
|
AC_SUBST(INSTALL_DEST)
|
||||||
|
|
||||||
|
L=""
|
||||||
|
for l in x $LIBOBJS; do
|
||||||
|
case $l in
|
||||||
|
x) ;;
|
||||||
|
*) L="$L ./$l" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
LIBOBJS="$L"
|
||||||
|
|
||||||
# We need multilib support, but only if configuring for the target.
|
# We need multilib support, but only if configuring for the target.
|
||||||
AC_OUTPUT(Makefile testsuite/Makefile,
|
AC_OUTPUT(Makefile testsuite/Makefile,
|
||||||
[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
|
[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
|
||||||
|
@ -35,6 +35,9 @@ extern int errno;
|
|||||||
#if HAVE_SYS_STAT_H
|
#if HAVE_SYS_STAT_H
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#endif
|
#endif
|
||||||
|
#if HAVE_LIMITS_H
|
||||||
|
#include <limits.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Prototype these in case the system headers don't provide them. */
|
/* Prototype these in case the system headers don't provide them. */
|
||||||
extern char *getpwd ();
|
extern char *getpwd ();
|
||||||
|
@ -213,6 +213,12 @@ sub locals_first {
|
|||||||
|
|
||||||
sub deps {
|
sub deps {
|
||||||
|
|
||||||
|
$crule = "\tif [ x\"\$(PICFLAG)\" != x ]; then \\\n";
|
||||||
|
$crule .= "\t \$(COMPILE.c) \$(PICFLAG) \$< -o pic/\$@; \\\n";
|
||||||
|
$crule .= "\telse true; fi\n";
|
||||||
|
$crule .= "\t\$(COMPILE.c) \$< \$(OUTPUT_OPTION)\n";
|
||||||
|
$crule .= "\n";
|
||||||
|
|
||||||
$incdir = shift @ARGV;
|
$incdir = shift @ARGV;
|
||||||
|
|
||||||
opendir(INC, $incdir);
|
opendir(INC, $incdir);
|
||||||
@ -260,10 +266,10 @@ sub deps {
|
|||||||
@deps = sort { &locals_first($a,$b) } keys %scanned;
|
@deps = sort { &locals_first($a,$b) } keys %scanned;
|
||||||
$obj = $f;
|
$obj = $f;
|
||||||
$obj =~ s/\.c$/.o/;
|
$obj =~ s/\.c$/.o/;
|
||||||
$obj = "$obj:";
|
$obj = "./$obj:";
|
||||||
if ($#deps >= 0) {
|
if ($#deps >= 0) {
|
||||||
print OUT $obj;
|
print OUT "$obj \$(srcdir)/$f";
|
||||||
$len = length($obj);
|
$len = length("$obj $f");
|
||||||
for $dt (@deps) {
|
for $dt (@deps) {
|
||||||
$d = $mine{$dt};
|
$d = $mine{$dt};
|
||||||
if ($len + length($d) > 70) {
|
if ($len + length($d) > 70) {
|
||||||
@ -275,7 +281,12 @@ sub deps {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
print OUT "\n";
|
print OUT "\n";
|
||||||
|
} else {
|
||||||
|
print OUT "$obj \$(srcdir)/$f\n";
|
||||||
}
|
}
|
||||||
|
$c = $crule;
|
||||||
|
$c =~ s@\$\<@\$\(srcdir\)\/$f@g;
|
||||||
|
print OUT $c;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir(S);
|
closedir(S);
|
||||||
|
Loading…
Reference in New Issue
Block a user