We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make clean
1 parent e229fbc commit 4b0e401Copy full SHA for 4b0e401
Makefile
@@ -8,9 +8,11 @@ ifeq ($(CUDA_HOME),)
8
endif
9
10
ifndef CUDA_VERSION
11
+ifneq ($(MAKECMDGOALS),clean)
12
$(warning WARNING: CUDA_VERSION not set. Call make with CUDA string, for example: make cuda11x CUDA_VERSION=115 or make cpuonly CUDA_VERSION=CPU)
13
CUDA_VERSION:=
14
15
+endif
16
17
18
@@ -135,10 +137,5 @@ $(ROOT_DIR)/dependencies/cub:
135
137
cd dependencies/cub; git checkout 1.11.0
136
138
139
clean:
- rm build/*
-
140
-cleaneggs:
141
- rm -rf *.egg*
142
143
-cleanlibs:
144
- rm ./bitsandbytes/libbitsandbytes*.so
+ rm -rf build/* *.egg*
+ rm -f bitsandbytes/libbitsandbytes*.so
0 commit comments