Skip to content

Commit 4fb8f1c

Browse files
committed
chore: Added BENCH_DIR directory to clean rule
1 parent 41fbc34 commit 4fb8f1c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/ImGui/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,8 @@ graph-deps:
487487
clean:
488488
@printf "\n$(LINES_COLOR)───────$(NO_COLOR) $(TITLE_COLOR)Clean$(NO_COLOR)\n"
489489
@printf " %-12s : %s\n" "Removing" "OBJ, DEP, ASM, Binary"
490-
@$(RM) $(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) "$(BIN_DIR)/$(TARGET)" $(DOC_BUILD) 2>/dev/null || true
491-
@printf " $(OK_COLOR)$(NO_COLOR) %-10s : %s\n" "Done" "$(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) $(BIN_DIR) $(DOC_BUILD)"
490+
@$(RM) $(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) "$(BIN_DIR)/$(TARGET)" $(DOC_BUILD) $(BENCH_DIR) 2>/dev/null || true
491+
@printf " $(OK_COLOR)$(NO_COLOR) %-10s : %s\n" "Done" "$(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) $(BIN_DIR) $(DOC_BUILD) $(BENCH_DIR)"
492492
@printf "$(LINES_COLOR)────────────────────────────────────────────$(NO_COLOR)\n\n"
493493

494494
clean-all:

templates/advanced/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ graph-deps:
480480
clean:
481481
@printf "\n$(LINES_COLOR)───────$(NO_COLOR) $(TITLE_COLOR)Clean$(NO_COLOR)\n"
482482
@printf " %-12s : %s\n" "Removing" "OBJ, DEP, ASM, Binary"
483-
@$(RM) $(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) "$(BIN_DIR)/$(TARGET)" $(DOC_BUILD) 2>/dev/null || true
484-
@printf " $(OK_COLOR)$(NO_COLOR) %-10s : %s\n" "Done" "$(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) $(BIN_DIR) $(DOC_BUILD)"
483+
@$(RM) $(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) "$(BIN_DIR)/$(TARGET)" $(DOC_BUILD) $(BENCH_DIR) 2>/dev/null || true
484+
@printf " $(OK_COLOR)$(NO_COLOR) %-10s : %s\n" "Done" "$(OBJ_DIR) $(DEP_DIR) $(ASM_DIR) $(BIN_DIR) $(DOC_BUILD) $(BENCH_DIR)"
485485
@printf "$(LINES_COLOR)────────────────────────────────────────────$(NO_COLOR)\n\n"
486486

487487
clean-all:

0 commit comments

Comments
 (0)