7 lines
74 B
Makefile
7 lines
74 B
Makefile
main : main.cu util.h
|
|
nvcc -o main -std=c++11 main.cu
|
|
|
|
clean :
|
|
rm main
|
|
|