Add a makefile for cleaning the kernels code.

This commit is contained in:
laurent
2023-06-22 13:57:51 +01:00
parent e1eb86db61
commit 97fe1fac85

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
clean-ptx:
find target -name "*.ptx" -type f -delete
echo "" > kernels/src/lib.rs
touch kernels/build.rs
clean:
cargo clean
test:
cargo test
all: test