[修改] 完成clean,清除output、_install目录

This commit is contained in:
gaoyang3513
2024-01-21 14:47:11 +00:00
parent cd7f5fefe0
commit 56a729ac54

View File

@ -53,6 +53,8 @@ clean:
@for sub in $(SUB_DIRS); do \
$(MAKE) -C $${sub} clean; \
done;
@if [ -d $(LOCAL_DIR)/output ]; then rm -rf $(LOCAL_DIR)/output; fi;
@if [ -d $(LOCAL_DIR)/_install ]; then rm -rf $(LOCAL_DIR)/_install; fi;
install:
@mkdir -p $(INSTALL_DIR);