mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-24 02:49:07 +01:00
Add Makefile
This commit is contained in:
parent
e29852639d
commit
9f65ef67f7
2 changed files with 18 additions and 0 deletions
1
doc/.gitignore
vendored
1
doc/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
public_html
|
public_html
|
||||||
LdapSaisie.html
|
LdapSaisie.html
|
||||||
|
venv
|
||||||
|
|
17
doc/Makefile
Normal file
17
doc/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
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
|
Loading…
Reference in a new issue