-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
25 lines (22 loc) · 800 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
################################################################################
#
# Build script for project
# Created by Davide Andrea Mauro
# Last Edited by Davide Andrea Mauro on 2013-02-27
#
################################################################################
# Add source files here
EXECUTABLE := cGPUconv
# Cuda source files (compiled with cudacc)
CUFILES := GPUconv.cu
# C/C++ source files (compiled with gcc / c++)
CCFILES := main.cpp CPUconv.cpp OCLconv.cpp fft_execute.cpp fft_kernelstring.cpp fft_setup.cpp oclUtils.cpp
# Additional libraries needed by the project
USECUFFT := 1
USELIBSNDFILE := 1
USELIBFFTW3 := 1
USEOPENCL := 1
verbose := 1
################################################################################
# Rules and targets
include common.mk