view example/OpenCL/Makefile @ 1458:a0feb4877a1f draft

create GpuRunTest Recommit
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Sat, 09 Jun 2012 21:36:18 +0900
parents 2b886dcc0e7d
children 2983e9e93d24
line wrap: on
line source

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

TARGET=twice

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

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