mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
The maintenance of the conformance tests is moving to Github. This commit contains all the changes that have been done in Gitlab since the first public release of the conformance tests. Signed-off-by: Kevin Petit <kevin.petit@arm.com>
27 lines
700 B
Makefile
27 lines
700 B
Makefile
|
|
PRODUCTS = harness/\
|
|
|
|
# utils/
|
|
|
|
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
|
|
|
|
.PHONY: clean $(PRODUCTS) all
|