Skip to content

Commit

Permalink
fix up clean recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Sep 5, 2024
1 parent f6e3e3f commit a34c048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ native_test: native
@./native_test_runner

.PHONY: clean
clean: SHELL := bash
clean:
@rm -rf build dist {.,*,*/*}/{*.pyc,__pycache__,.mypy_cache,.pytest_cache,.benchmarks} || echo
@rm -rf build dist {.,*,*/*{,/*}}/{*.pyc,__pycache__,.mypy_cache,.pytest_cache,.benchmarks} || echo

dist/c-lib.wasm: build/lib.c
@mkdir -p dist
Expand Down
1 change: 1 addition & 0 deletions cplusplus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ native_test: native
@./native_test_runner

.PHONY: clean
clean: SHELL := bash
clean:
@rm -rf build dist {.,*,*/*}/{*.pyc,__pycache__,.mypy_cache,.pytest_cache,.benchmarks} || echo

Expand Down

0 comments on commit a34c048

Please sign in to comment.