2023-09-10 10:11:46 -05:00
|
|
|
.PHONY: all
|
2023-09-15 17:12:36 -05:00
|
|
|
all: hellocudasimple hellocudabitreverse
|
2023-09-10 10:11:46 -05:00
|
|
|
|
2023-09-15 17:12:36 -05:00
|
|
|
hellocudasimple: hellocudasimple.cu
|
|
|
|
|
/usr/local/cuda-12.2/bin/nvcc -g -G hellocudasimple.cu -o hellocudasimple
|
|
|
|
|
|
|
|
|
|
hellocudabitreverse: hellocudabitreverse.cu
|
|
|
|
|
/usr/local/cuda-12.2/bin/nvcc -g -G hellocudabitreverse.cu -o hellocudabitreverse
|
2023-09-10 10:11:46 -05:00
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
|
clean:
|
2023-09-15 17:12:36 -05:00
|
|
|
rm -f hellocudasimple hellocudasimple.o hellocudabitreverse hellocudabitreverse.o
|
2023-09-10 10:11:46 -05:00
|
|
|
|