Files
seer/tests/hellocuda/Makefile
T
2023-09-10 10:11:46 -05:00

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