diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-12-09 12:42:25 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-12-09 12:42:25 +0100 |
commit | d552d04dbdd45497ea28654b9ec3a01ef2c6fb67 (patch) | |
tree | bd0f137d42c5cad83220f4f3f63c09366b40820b /Makefile | |
parent | ade860f463dc04be3149e6367b77af5a5f50de31 (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-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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) |