Privacy policy, website and donation information for https://software.franco.net.eu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
324 B
20 lines
324 B
#!/usr/bin/make -f |
|
# |
|
# See LICENSE file for details. |
|
|
|
default: install-dev |
|
|
|
install-dev: |
|
pipenv install --dev |
|
pipenv run pre-commit install |
|
pipenv graph |
|
pipenv check |
|
|
|
uninstall-dev: |
|
rm -f Pipfile.lock |
|
pipenv --rm |
|
|
|
update: install-dev |
|
pipenv run pre-commit autoupdate |
|
|
|
.PHONY: default install-dev uninstall-dev update
|
|
|