view hello_World_Example/Makefile @ 4:8df0d3128672

add time measurement function
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Mon, 04 Feb 2013 03:43:17 +0900
parents ccea4e6a1945
children
line wrap: on
line source

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

TARGET=hello

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

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