diff options
author | Ian Lance Taylor <iant@google.com> | 2008-03-25 00:54:53 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2008-03-25 00:54:53 +0000 |
commit | 598848e4d62700217e10f5d30c12fec4aa4d6edb (patch) | |
tree | 32635e2ba714a77df03638f051b1981d3d93da8c /libiberty/Makefile.in | |
parent | 8e291ddfb2b1e16d6c0355b2f92c6ac7d2241a06 (diff) | |
download | gcc-598848e4d62700217e10f5d30c12fec4aa4d6edb.zip gcc-598848e4d62700217e10f5d30c12fec4aa4d6edb.tar.gz gcc-598848e4d62700217e10f5d30c12fec4aa4d6edb.tar.bz2 |
sha1.h: New file, from gnulib.
include/:
* sha1.h: New file, from gnulib.
libiberty/:
* sha1.c: New file, from gnulib.
* Makefile.in: Rebuild dependencies.
(CFILES): Add sha1.c.
(REQUIRED_OFILES): Add sha1.o.
From-SVN: r133503
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 3b99f40..bb3bd81 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -143,10 +143,11 @@ CFILES = alloca.c argv.c asprintf.c atexit.c \ pex-unix.c pex-win32.c \ physmem.c putenv.c \ random.c regex.c rename.c rindex.c \ - safe-ctype.c setenv.c sigsetmask.c snprintf.c sort.c spaces.c \ - splay-tree.c stpcpy.c stpncpy.c strcasecmp.c strchr.c strdup.c \ - strerror.c strncasecmp.c strncmp.c strrchr.c strsignal.c \ - strstr.c strtod.c strtol.c strtoul.c strndup.c strverscmp.c \ + safe-ctype.c setenv.c sha1.c sigsetmask.c snprintf.c sort.c \ + spaces.c splay-tree.c stpcpy.c stpncpy.c strcasecmp.c \ + strchr.c strdup.c strerror.c strncasecmp.c strncmp.c \ + strrchr.c strsignal.c strstr.c strtod.c strtol.c strtoul.c \ + strndup.c strverscmp.c \ tmpnam.c \ unlink-if-ordinary.c \ vasprintf.c vfork.c vfprintf.c vprintf.c vsnprintf.c vsprintf.c \ @@ -156,7 +157,8 @@ CFILES = alloca.c argv.c asprintf.c atexit.c \ # These are always included in the library. The first four are listed # first and by compile time to optimize parallel builds. -REQUIRED_OFILES = ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o \ +REQUIRED_OFILES = \ + ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o \ ./alloca.o ./argv.o \ ./choose-temp.o ./concat.o ./cp-demint.o \ ./dyn-string.o \ @@ -944,6 +946,12 @@ $(CONFIGURED_OFILES): stamp-picdir else true; fi $(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION) +./sha1.o: $(srcdir)/sha1.c stamp-h $(INCDIR)/sha1.h + if [ x"$(PICFLAG)" != x ]; then \ + $(COMPILE.c) $(PICFLAG) $(srcdir)/sha1.c -o pic/$@; \ + else true; fi + $(COMPILE.c) $(srcdir)/sha1.c $(OUTPUT_OPTION) + ./sigsetmask.o: $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h if [ x"$(PICFLAG)" != x ]; then \ $(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \ |