mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-24 02:49:07 +01:00
17 lines
347 B
Makefile
17 lines
347 B
Makefile
serve: venv
|
|
venv/bin/mkdocs serve
|
|
|
|
build: venv public_html LdapSaisie.html
|
|
|
|
public_html:
|
|
venv/bin/mkdocs build -s
|
|
|
|
LdapSaisie.html: public_html
|
|
venv/bin/htmlark public_html/print_page/index.html -o LdapSaisie.html
|
|
|
|
venv:
|
|
python3 -m venv venv
|
|
venv/bin/python -m pip install -r requirements.txt
|
|
|
|
clean:
|
|
rm -fr venv public_html LdapSaisie.html
|