mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
17 lines
267 B
Makefile
17 lines
267 B
Makefile
ROOT_DIR := $(realpath ../../..)
|
|
include $(ROOT_DIR)/config.mk
|
|
|
|
PROJECT := saxpy
|
|
|
|
SRC_DIR := $(VORTEX_HOME)/tests/opencl/$(PROJECT)
|
|
|
|
SRCS := $(SRC_DIR)/main.cc
|
|
|
|
kernel.cl: $(SRC_DIR)/kernel.cl
|
|
cp $< $@
|
|
|
|
KERNEL_SRCS := kernel.cl
|
|
|
|
OPTS ?= -n1024
|
|
|
|
include ../common.mk
|