Files
clr-avx-tools/Makefile
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

19 lines
346 B
Makefile

prefix = $(DESTDIR)/usr
bindir = $(prefix)/bin
bin_PROGRAMS = \
clr-avx2-move.pl \
clr-python-avx2 \
clr-python-avx512
datadir = $(prefix)/share/clr-avx-tools
data_FILES = \
avxjudge.py \
avxjudge.make
all:
install:
install -d $(bindir) $(datadir)
install -m 755 -t $(bindir) $(bin_PROGRAMS)
install -m 644 -t $(datadir) $(data_FILES)