add some preferences
This commit is contained in:
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
|
||||
|
Reference in New Issue
Block a user