mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
11 lines
167 B
Makefile
11 lines
167 B
Makefile
.PHONY: all
|
|
all: hellocuda
|
|
|
|
hellocuda: hellocuda.cu
|
|
/usr/local/cuda-12.2/bin/nvcc -g -G hellocuda.cu -o hellocuda
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellocuda hellocuda.o
|
|
|