blob: 85f7f5328256404b47a28d492d4ba0678d82278c (
plain)
1
2
3
4
5
6
7
8
9
|
CFLAGS=-g
all: hello_world math-int
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
|