summaryrefslogtreecommitdiff
path: root/Makefile
blob: a298383a67750184b6bd5678524dd7bc453b5940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS=-g

all: hello_world math-int get-global-id

hello_world: hello_world.o util.o
	gcc -o hello_world $^ -L/usr/local/lib/ -lOpenCL

math-int: math-int.o util.o
	gcc -o math-int $^ -L/usr/local/lib/ -lOpenCL

get-global-id: get_global_id.o util.o
	gcc -o get-global-id $^ -L/usr/local/lib/ -lOpenCL