# Copyright 1993-2006 NVIDIA Corporation.  All rights reserved.
# Build script for project
###############################################################
# Add source files here
EXECUTABLE	:= deviceQuery
# Cuda source files (compiled with cudacc)
CUFILES		:= 
# C/C++ source files (compiled with gcc / g++)
CCFILES		:= deviceQuery.cpp

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

# verbose = 1

include Makefile.CUDA

CLEAN : clean
	@rm -rf bin obj deviceQuery.txt SdkMasterLog.csv
