Skip to content

Commit aa4f62b

Browse files
committed
make: Don't delete 'build' dir in 'clean' target
1 parent be920ea commit aa4f62b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ _default: compile
88

99

1010
clean:
11-
rm -fr dist/ doc/_build/ *.egg-info build/ uvloop/loop.*.pyd
11+
rm -fr dist/ doc/_build/ *.egg-info uvloop/loop.*.pyd
1212
rm -fr build/lib.* build/temp.*
1313
rm -fr uvloop/*.c uvloop/*.html uvloop/*.so
1414
rm -fr uvloop/handles/*.html uvloop/includes/*.html
@@ -20,6 +20,7 @@ clean-libuv:
2020

2121

2222
distclean: clean clean-libuv
23+
rm -fr build/
2324

2425

2526
compile: clean

0 commit comments

Comments
 (0)