Files
clr-avx-tools/avxjudge.make
T
Thiago Macieira 3037904971 Use GNU Make as a way to do parallel runs of avxjudge.py
The script is not really fast on big libraries, so parallelising the run
should sorten considerably the post-install procedures, especially on
build servers with a lot of cores.

Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
2018-08-22 13:53:36 -07:00

16 lines
300 B
Makefile

# -* makefile -*-
MAKEFILE := $(lastword $(MAKEFILE_LIST))
MAKEFILEDIR := $(dir $(MAKEFILE))
.SUFFIXES: # Remove implicit rules
.PHONY: force
force:
# Don't try to update this makefile
$(MAKEFILE):
:
# For all other files, run avxjudge.py
/%: force
python3 $(MAKEFILEDIR)/avxjudge.py $(ARGS) $@