feat(lsm): some more string functions; start of data streaming api

This commit is contained in:
Jef Roosens 2023-10-25 10:57:45 +02:00
parent fca8495de4
commit b552e0a81b
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
9 changed files with 199 additions and 17 deletions

View file

@ -39,8 +39,12 @@ objs: $(OBJS)
libtrie:
$(MAKE) -C trie
.PHONY: liblsm
liblsm:
$(MAKE) -C lsm
.PHONY: bin
$(BIN): libtrie $(OBJS)
$(BIN): libtrie liblsm $(OBJS)
$(CC) -o $@ $(OBJS) $(_LDFLAGS)
$(BUILD_DIR)/$(SRC_DIR)/%.c.o: $(SRC_DIR)/%.c
@ -104,6 +108,7 @@ fmt:
clean:
rm -rf $(BUILD_DIR)
$(MAKE) -C trie clean
$(MAKE) -C lsm clean
.PHONY: bear