Below is the makefile that I am using to try to compile from cuda project.
The only problem is when I run make the following output occurs:
make: *** No rule to make target obj/x86_64/release/cudaKernels.cu.o', needed by
/usr/local/me/workspaces/executableName/project/release/executableName’. Stop.
[codebox]
EXECUTABLE := executableName
Cuda source files compiled with cudacc
CUFILES := cudaKernels.cu
Cuda dependency files
#CU_DEPS
C/C++ source files compiled with gcc / c++
CCFILES := mainProgram.cpp
INCLUDES += -I…/includes -I…/otherIncludes
ROOTDIR=/usr/local/me/cudasdk3.0/C/src/
SRCDIR=/usr/local/me/workspaces/executableName/project/
BINDIR=/usr/local/me/workspaces/executableName/project/
include /usr/local/me/cudasdk3.0/C/common/common.mk[/codebox]
I am assuming I am missing something very simple. I have read other posts and verified that the CUDA libraries are included in PATH and the libraries path.
Any suggestions for what I have done wrong in this makefile?
Thanks