Files
OpenCL-CTS/test_conformance/compatibility/test_common/Makefile
2017-05-16 18:44:33 +05:30

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