chore(lander): removed old networking code
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/docker Pipeline failed

This commit is contained in:
Jef Roosens 2023-12-06 23:04:06 +01:00
parent 1a7686003c
commit c59dd29648
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
15 changed files with 7 additions and 1207 deletions

View file

@ -111,12 +111,14 @@ $(BUILD_DIR)/$(TEST_DIR)/%.c.o: $(TEST_DIR)/%.c
lint:
clang-format -n --Werror $(SRCS) $(SRCS_H) $(SRCS_H_INTERNAL)
make -C lsm lint
make -C lnm lint
make -C landerctl lint
.PHONY: fmt
fmt:
clang-format -i $(SRCS) $(SRCS_H) $(SRCS_H_INTERNAL)
make -C lsm fmt
make -C lnm fmt
make -C landerctl fmt
.PHONY: check
@ -133,12 +135,14 @@ check:
-j$(shell nproc) \
$(SRCS)
make -C lsm check
make -C lnm check
make -C landerctl check
.PHONY: clean
clean:
rm -rf $(BUILD_DIR)
$(MAKE) -C lsm clean
$(MAKE) -C lnm clean
$(MAKE) -C landerctl clean
.PHONY: bear