diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-16 15:30:17 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-16 15:30:17 +0000 |
commit | eec194201326ff6154193b96635d644f69745be5 (patch) | |
tree | 0ef9af7b27f6b9fa39ac0ecdbc4accf09888f208 /libiberty/Makefile.in | |
parent | 7c4b32f31227bc2ad8a44ba30c3b1e4d3bdcd63a (diff) | |
download | gcc-eec194201326ff6154193b96635d644f69745be5.tar.gz |
2001-04-15 Daniel Berlin <dan@cgsoftware.com>
* ternary.h: New file - Ternary search tree header.
2001-04-15 Daniel Berlin <dan@cgsoftware.com>
* ternary.c: New file - Ternary search tree implementation.
* Makefile.in: Add ternary.o, and ternary.c dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41380 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 9b5951f1fcf..92b90fa748f 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -132,7 +132,7 @@ CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \ strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c \ strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \ vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \ - xmalloc.c xmemdup.c xstrdup.c xstrerror.c + xmalloc.c xmemdup.c xstrdup.c xstrerror.c ternary.c # These are always included in the library. REQUIRED_OFILES = argv.o alloca.o choose-temp.o concat.o cplus-dem.o \ @@ -141,7 +141,7 @@ REQUIRED_OFILES = argv.o alloca.o choose-temp.o concat.o cplus-dem.o \ md5.o make-temp-file.o objalloc.o \ obstack.o partition.o pexecute.o safe-ctype.o sort.o spaces.o \ splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \ - xmemdup.o xstrdup.o xstrerror.o + xmemdup.o xstrdup.o xstrerror.o ternary.o $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) -rm -f $(TARGETLIB) @@ -290,6 +290,7 @@ strerror.o: config.h $(INCDIR)/libiberty.h strsignal.o: config.h $(INCDIR)/libiberty.h strtol.o: config.h strtoul.o: config.h +ternary.o: config.h $(INCDIR)/ternary.h $(INCDIR)/libiberty.h vasprintf.o: config.h xatexit.o: $(INCDIR)/libiberty.h xexit.o: config.h $(INCDIR)/libiberty.h |