BabelStream/Makefile

14 lines
202 B
Makefile

LIBS = -l OpenCL
PLATFORM = $(shell uname -s)
ifeq ($(PLATFORM), Darwin)
LIBS = -framework OpenCL
endif
gpu-stream-ocl: ocl-stream.cpp
c++ $< -std=c++11 -o $@ $(LIBS)
clean:
rm -f gpu-stream-ocl