################################################################################
#
# Build script for project
#
################################################################################

# Add source files here
EXECUTABLE      := grassy_opt
# CUDA source files (compiled with cudacc)
CUFILES		:= grassy.cu
# CUDA dependency files
CU_DEPS		:= grassy_kernel.cu grassy_io.cu grassy_init.cu
# C/C++ source files (compiled with gcc / c++)
CCFILES         :=

################################################################################
# Rules and targets

LINKFLAGS += -L/Users/townsend/packages/32-bit/lib -lhdf5 -lz

include ../../common/common.mk

NVCCFLAGS += -I/Users/townsend/packages/32-bit/include --ptxas-options=-v -DBLOCK_SIZE=128
CXXFLAGS += -DBLOCK_SIZE=128
