Skip to content

Commit

Permalink
build: New clean-all target in Makefile (#20)
Browse files Browse the repository at this point in the history
Signed-off-by: jannfis <[email protected]>
  • Loading branch information
jannfis authored Feb 29, 2024
1 parent a4c157f commit f41a119
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ mod-vendor:

.PHONY: clean
clean:
rm -rf dist/ vendor/ build/
rm -rf dist/ vendor/

# clean-all also removes any build-time dependencies installed into the tree
.PHONY: clean-all
clean-all: clean
rm -rf build

./build/bin:
mkdir -p build/bin
Expand Down

0 comments on commit f41a119

Please sign in to comment.