Browse Source

Remove unused includes from codec Makefile.

Stefano Cossu 1 year ago
parent
commit
8e830da5af
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/codec/Makefile

+ 1 - 2
src/codec/Makefile

@@ -15,8 +15,7 @@ GRAMMAR_OBJ ::= $(CODEC_OBJ:codec_%=grammar_%)
 OBJ = $(GRAMMAR_OBJ) $(PARSER_OBJ) $(CODEC_OBJ)
 DBG_OBJ = $(OBJ:%.o=%_dbg.o)
 
-INCLUDE ::= -I$(INCLUDE_DIR) -I../../ext/openldap/libraries/liblmdb \
-	-I../../ext/xxHash -I../../ext/tpl/src -I../../ext/hashmap \
+INCLUDE ::= -I$(INCLUDE_DIR) -I../../ext/tpl/src -I../../ext/hashmap \
 	-I../../ext/log/src
 CFLAGS = -std=gnu11 -Wall -fPIC -MMD $(INCLUDE)
 DBG_CFLAGS = -I../../test -O0 -g3 -DDEBUG