add some preferences
This commit is contained in:
parent
1555e20459
commit
5e99216cf2
8 changed files with 503 additions and 25 deletions
18
Makefile
18
Makefile
|
@ -47,9 +47,23 @@ bandit:
|
|||
rsync::
|
||||
bash .rsync.sh
|
||||
|
||||
install::
|
||||
install:: install-pip
|
||||
|
||||
install-setup::
|
||||
# deprecated
|
||||
${PYTHON_EXE_MSYS} -W ignore::DeprecationWarning \
|
||||
setup.py install \
|
||||
--prefix ${PREFIX}
|
||||
|
||||
install-pip::
|
||||
# we install --nodeps because pip is installing stuff we already have in the OS
|
||||
${PIP_EXE_MSYS} --python ${PYTHON_EXE_MSYS} install \
|
||||
--no-deps \
|
||||
--no-deps --no-index \
|
||||
--target ${PREFIX}/lib/python${PYTHON_MINOR}/site-packages/ \
|
||||
--upgrade .
|
||||
|
||||
veryclean:: clean
|
||||
rm -rf build dist $(MOD).egg-info
|
||||
|
||||
clean::
|
||||
find . -type f -name \*~ -delete
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue