The terminal shows below these error information,when i run samples of Rodinia Benchmark to test GP

_euler3d_double /home/gpgpu-sim/Downloads/rodinia_3.0/bin/linux/cuda
make[1]: Entering directory /home/gpgpu-sim/Downloads/rodinia_3.0/cuda/cfd' make[1]: Nothing to be done for all’.
make[1]: Leaving directory `/home/gpgpu-sim/Downloads/rodinia_3.0/cuda/cfd’
cp: cannot stat ‘euler3d_double’: No such file or directory
cp: cannot stat ‘pre_euler3d’: No such file or directory
cp: cannot stat ‘pre_euler3d_double’: No such file or directory
make: *** [CUDA] Error 1
gpgpu-sim@gpgpusim-VirtualBox:~/Downloads/rodinia_3.0$

the configuration content of make.config file in common folder of Rodinia_ 3.0:

CUDA toolkit installation path

#CUDA_DIR = /usr/local/cuda
CUDA_DIR = /home/gpgpu-sim/cuda/toolkit/4.2/cuda

CUDA toolkit libraries

#CUDA_LIB_DIR := $(CUDA_DIR)/lib
CUDA_LIB_DIR :=/home/gpgpu-sim/gpgpu-sim_distribution/lib/gcc-4.6.4/cuda-4020/release
ifeq ($(shell uname -m), x86_64)
ifeq ($(shell if test -d $(CUDA_DIR)/lib64; then echo T; else echo F; fi), T)
CUDA_LIB_DIR := $(CUDA_DIR)/lib64
endif
endif

CUDA SDK installation path

SDK_DIR = $(HOME)/NVIDIA_GPU_Computing_SDK/C
#SDK_DIR = /usr/local/cuda-5.5/samples/
#SDK_DIR =/if10/kw5na/NVIDIA_CUDA_Computing_SDK4/C

OPENCL

NVIDIA_DIR

OPENCL_DIR =/if10/kw5na/NVIDIA_GPU_Computing_SDK4

OPENCL_INC = $(OPENCL_DIR)/OpenCL/common/inc

OPENCL_LIB = $(OPENCL_DIR)/OpenCL/common/lib -lOpenCL

AMD_DIR

OPENCL_DIR = /if10/kw5na/Packages/AMD-APP-SDK-v2.8-RC-lnx64
OPENCL_INC = $(OPENCL_DIR)/include/
OPENCL_LIB = $(OPENCL_DIR)/lib/x86_64/ -lOpenCL
#ifeq ($(shell uname -m), x86_64)

ifeq ($(shell if test -d $(OPENCL_DIR)/lib/x86_64/; then echo T; else echo F; fi), T)

OPENCL_LIB = $(OPENCL_DIR)/lib/x86_64/

endif

#endif

How to solve this problem?