summaryrefslogtreecommitdiff
path: root/Makefile
blob: 97923e960044147cac948091aa9ef004a68dc33d (plain)
1
2
3
4
5
6
7
8
9
10
11
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