Skip to content

Commit

Permalink
Remove executable when invoking make clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
zzril committed Oct 10, 2024
1 parent 85b9239 commit a28c780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ all: $(BIN)

.PHONY: clean
clean:
rm -r $(BLD_DIR) || true
rm -r $(BLD_DIR) $(BIN_DIR) || true

.PHONY: check
check: $(TESTS)
Expand Down

0 comments on commit a28c780

Please sign in to comment.