mirror of
https://github.com/clearlinux/clr-avx-tools.git
synced 2026-05-13 10:23:43 +00:00
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>
21 lines
380 B
Makefile
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)
|