
PASDOC := pasdoc
DIR := doc-html

doc: $(DIR) files.txt
	$(PASDOC) --output=$< --language=fr.utf8 --staronly --source=files.txt

$(DIR):
	mkdir $@

