feat(makefile): add re rule to makefile

This commit is contained in:
sxpphickat
2024-09-25 11:28:07 -03:00
parent 65133b28dc
commit 59fc36c05d

View File

@@ -30,6 +30,8 @@ dev:
run: build
./bin/dislate
re: build dev
clean:
if [[ -d "dist" ]]; then rm -r ./dist; fi
if [[ -d "tmp" ]]; then rm -r ./tmp; fi