mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 14:33:02 +01:00
24 lines
311 B
Makefile
24 lines
311 B
Makefile
|
DOCBOOK_FILE=../LdapSaisie.docbook
|
||
|
|
||
|
all: html pdf
|
||
|
|
||
|
# HTML
|
||
|
html: html/LdapSaisie.html
|
||
|
|
||
|
html/LdapSaisie.html:
|
||
|
cd html; make html
|
||
|
|
||
|
clean_html:
|
||
|
cd html; make clean
|
||
|
|
||
|
# PDF
|
||
|
pdf: pdf/LdapSaisie.pdf
|
||
|
|
||
|
pdf/LdapSaisie.pdf:
|
||
|
cd pdf; make pdf
|
||
|
|
||
|
clean_pdf:
|
||
|
cd pdf; make clean
|
||
|
|
||
|
clean: clean_html clean_pdf
|