Files
clr-avx-tools/Makefile
William Douglas 013a989f5a Add new python pypi dependency replacement tool
Add tooling to remove version dependencies for a given list of python
modules found in a subset of files in a given directory. This is
useful for cases where packages in pypi have out of date dependencies
relative to the test of the ecoysystem.

Signed-off-by: William Douglas <william.douglas@intel.com>
2021-10-19 11:42:45 -07:00

21 lines
380 B
Makefile

prefix = $(DESTDIR)/usr
bindir = $(prefix)/bin
bin_PROGRAMS = \
clr-avx2-move.pl \
clr-python-avx2 \
clr-python-avx512 \
elf-move.py \
pypi-dep-fix.py
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)