Forgot the makefile portion
This commit is contained in:
parent
400ee7e1e2
commit
a5dd804ef9
2 changed files with 7 additions and 5 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
* ternary.c: New file - Ternary search tree implementation.
|
* ternary.c: New file - Ternary search tree implementation.
|
||||||
|
|
||||||
|
* Makefile.in: Add ternary.o, and ternary.c dependencies.
|
||||||
|
|
||||||
2001-04-03 Zack Weinberg <zackw@stanford.edu>
|
2001-04-03 Zack Weinberg <zackw@stanford.edu>
|
||||||
|
|
||||||
|
|
|
@ -130,9 +130,9 @@ CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
|
||||||
partition.c pexecute.c putenv.c random.c rename.c rindex.c setenv.c \
|
partition.c pexecute.c putenv.c random.c rename.c rindex.c setenv.c \
|
||||||
sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c \
|
sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c \
|
||||||
strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.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 \
|
strsignal.c strstr.c strtod.c strtol.c strtoul.c ternary.c tmpnam.c \
|
||||||
vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \
|
vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \
|
||||||
xmalloc.c xmemdup.c xstrdup.c xstrerror.c
|
xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c ternary.c
|
||||||
|
|
||||||
# These are always included in the library.
|
# These are always included in the library.
|
||||||
REQUIRED_OFILES = argv.o alloca.o choose-temp.o concat.o cplus-dem.o \
|
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 \
|
md5.o make-temp-file.o objalloc.o \
|
||||||
obstack.o partition.o pexecute.o safe-ctype.o sort.o spaces.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 \
|
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)
|
$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
|
||||||
-rm -f $(TARGETLIB)
|
-rm -f $(TARGETLIB)
|
||||||
|
@ -290,6 +290,7 @@ strerror.o: config.h $(INCDIR)/libiberty.h
|
||||||
strsignal.o: config.h $(INCDIR)/libiberty.h
|
strsignal.o: config.h $(INCDIR)/libiberty.h
|
||||||
strtol.o: config.h
|
strtol.o: config.h
|
||||||
strtoul.o: config.h
|
strtoul.o: config.h
|
||||||
|
ternary.o: config.h $(INCDIR)/ternary.h $(INCDIR)/libiberty.h
|
||||||
vasprintf.o: config.h
|
vasprintf.o: config.h
|
||||||
xatexit.o: $(INCDIR)/libiberty.h
|
xatexit.o: $(INCDIR)/libiberty.h
|
||||||
xexit.o: config.h $(INCDIR)/libiberty.h
|
xexit.o: config.h $(INCDIR)/libiberty.h
|
||||||
|
|
Loading…
Reference in a new issue