feat(tree): initially working binary tree

This commit is contained in:
Jef Roosens 2023-01-19 22:45:22 +01:00
parent 98f158e1f5
commit 935a610b7e
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
4 changed files with 141 additions and 18 deletions

View file

@ -43,7 +43,7 @@ objs: $(OBJS)
.PHONY: vieter
vieter: $(LIB)
$(BUILD_DIR)/$(LIB_FILENAME): $(OBJS)
$(LIB): $(OBJS)
ar -rcs $@ $(OBJS)
$(BUILD_DIR)/$(SRC_DIR)/%.c.o: $(SRC_DIR)/%.c