view printGpuInfo/Makefile @ 11:53e22a570937

add gpuInfo opencl example
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Mon, 11 Feb 2013 20:02:23 +0900
parents
children
line wrap: on
line source

CFLAGS = -Wall -framework opencl
CC = clang++
OPT = -g

TARGET=printInfo

printInfo : printGpuInfo.o
	$(CC) $(OPT) $(CFLAGS) -o $@ $?

clean:
	rm -rf *.o $(TARGET)