mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 08:13:14 +01:00
14 lines
229 B
Makefile
14 lines
229 B
Makefile
|
DOCBOOK_FILE=../../LdapSaisie.docbook
|
||
|
DBTOEPUB=dbtoepub
|
||
|
EPUB_FILE=LdapSaisie.epub
|
||
|
|
||
|
all: epub
|
||
|
|
||
|
epub: $(EPUB_FILE)
|
||
|
|
||
|
LdapSaisie.epub: $(DOCBOOK_FILE)
|
||
|
$(DBTOEPUB) -o $(EPUB_FILE) "$(DOCBOOK_FILE)"
|
||
|
|
||
|
clean:
|
||
|
rm -f $(EPUB_FILE)
|