Skip to content

Commit

Permalink
Fix file paths in 'make clean'
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Feb 2, 2025
1 parent 057f1bf commit 156a479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.posix
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jou: jou_bootstrap config.jou $(wildcard compiler/*.jou compiler/*/*.jou)
# Bootstrap folder is deleted without -v (verbose) because it contains many files.
.PHONY: clean
clean:
rm -rf tmp/bootstrap && rm -rvf jou jou.exe tmp config.jou
rm -rf tmp/bootstrap_cache && rm -rvf jou jou.exe tmp config.jou
find . -name jou_compiled -print -exec rm -rf '{}' +
2 changes: 1 addition & 1 deletion Makefile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jou.exe: jou_bootstrap.exe config.jou $(wildcard compiler/*.jou compiler/*/*.jou
# Bootstrap folder is deleted without -v (verbose) because it contains many files.
.PHONY: clean
clean:
rm -rf tmp/bootstrap && rm -rvf jou.exe tmp config.jou
rm -rf tmp/bootstrap_cache && rm -rvf jou.exe tmp config.jou
find -name jou_compiled -print -exec rm -rf '{}' +

0 comments on commit 156a479

Please sign in to comment.