summaryrefslogtreecommitdiff
path: root/src/utils/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-30 16:35:19 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-30 16:35:19 +0000
commitaa0aa44aaab4b0693400dc4307822ac493014224 (patch)
tree0fbce8307517d84a2f1eb1a295778e8dd6fff6d4 /src/utils/Makefile
parent7712c61effc3ef39d0b9eaf060049d11441884bf (diff)
downloadlibparserutils-aa0aa44aaab4b0693400dc4307822ac493014224.tar.gz
libparserutils-aa0aa44aaab4b0693400dc4307822ac493014224.tar.bz2
New datastructures:
+ Chunked array + Hash table (open addressing) Constify parameter to parserutils_stack_push svn path=/trunk/libparserutils/; revision=5850
Diffstat (limited to 'src/utils/Makefile')
-rw-r--r--src/utils/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/Makefile b/src/utils/Makefile
index c786a09..f32ef72 100644
--- a/src/utils/Makefile
+++ b/src/utils/Makefile
@@ -35,7 +35,8 @@ d := $(DIR)
CFLAGS := $(CFLAGS) -I$(d)
# Sources
-SRCS_$(d) := buffer.c dict.c errors.c rbtree.c stack.c vector.c
+SRCS_$(d) := chunkarray.c buffer.c dict.c errors.c hash.c rbtree.c stack.c \
+ vector.c
# Append to sources for component
SOURCES += $(addprefix $(d), $(SRCS_$(d)))