mirror of
https://github.com/clearlinux/clr-avx-tools.git
synced 2026-09-04 04:41:37 +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>
19 lines
346 B
Makefile
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)
|