target=cldemo
all:${target}
cc=clang
${target}:${target}.c
	${cc} ${target}.c -pedantic -ansi -Wall -lOpenCL -o ${target}
clean:
	rm ${target} > /dev/null 2>&1
