summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-12-09 12:42:25 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-12-09 12:42:25 +0100
commitd552d04dbdd45497ea28654b9ec3a01ef2c6fb67 (patch)
treebd0f137d42c5cad83220f4f3f63c09366b40820b /Makefile
parentade860f463dc04be3149e6367b77af5a5f50de31 (diff)
sfeed_tail: replace hashmap + linked-list with RBtree
- This is much more memory efficient. I have not done any speed comparison yet but it is not noticable atleast. - add BSD <sys/tree.h>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0e312b3..a7b85df 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,10 @@ SCRIPTS = \
sfeed_update
SRC = ${BIN:=.c}
+HDR = \
+ tree.h\
+ util.h\
+ xml.h
LIBUTIL = libutil.a
LIBUTILSRC = \
@@ -43,9 +47,6 @@ DOC = \
README\
README.xml\
TODO
-HDR = \
- util.h\
- xml.h
all: $(BIN)