mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 08:19:02 +00:00
Initial open source release of OpenCL 2.0 CTS.
This commit is contained in:
31
test_conformance/images/Makefile
Normal file
31
test_conformance/images/Makefile
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
PRODUCTS = \
|
||||
clCopyImage/ \
|
||||
clFillImage/ \
|
||||
clGetInfo/ \
|
||||
clReadWriteImage/ \
|
||||
kernel_image_methods/ \
|
||||
kernel_read_write/ \
|
||||
samplerlessReads/
|
||||
|
||||
TOP=$(shell pwd)
|
||||
|
||||
all: $(PRODUCTS)
|
||||
|
||||
clean:
|
||||
@for testdir in $(dir $(PRODUCTS)) ; \
|
||||
do ( \
|
||||
echo "==================================================================================" ; \
|
||||
echo "Cleaning $$testdir" ; \
|
||||
echo "==================================================================================" ; \
|
||||
cd $$testdir && make clean \
|
||||
); \
|
||||
done \
|
||||
|
||||
$(PRODUCTS):
|
||||
@echo "==================================================================================" ;
|
||||
@echo "(`date "+%H:%M:%S"`) Make $@" ;
|
||||
@echo "==================================================================================" ;
|
||||
cd $(dir $@) && make -i
|
||||
|
||||
.PHONY: clean $(PRODUCTS) all
|
||||
Reference in New Issue
Block a user