mirror of
https://github.com/clearlinux/clr-avx-tools.git
synced 2026-09-05 13:21:27 +00:00
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>
16 lines
300 B
Makefile
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) $@
|