This commit is contained in:
Rodney, Tiara 2025-05-17 20:22:48 +02:00 committed by Tiara Rodney
commit 4cbe50253a
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
36 changed files with 4073 additions and 0 deletions

35
Makefile Normal file
View file

@ -0,0 +1,35 @@
.PHONY: chore configure requirements-dev.txt requirements.txt
all: chore
chore: requirements.txt requirements-dev.txt
Pipfile.lock: Pipfile
python3 -m pipenv lock -v
requirements-dev.txt: Pipfile.lock
python3 -m pipenv requirements --exclude-markers --dev-only > requirements-dev.txt
requirements.txt: Pipfile.lock
python3 -m pipenv requirements --exclude-markers > requirements.txt
configure: configure.ac
autoconf
test-reports/integration:
python3 -m pipenv run -v test-integration
test-reports/unit:
python3 -m pipenv run -v test-unit
test-reports/static:
python3 -m pipenv run -v test-static
build/doc: docs
python3 -m pipenv run -v doc
dist:
python3 -m pipenv run -v dist
clean:
rm -rvf autom4te.cache/ config.status config.log configure~ dist/ build/