You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
399 B

3 weeks ago
  1. .PHONY: all
  2. all: index.html
  3. .PHONY: task-filecycle.dot
  4. task-lifecycle.dot:
  5. php ../../bin/console workflow:dump --with-metadata task_lifecycle >$@
  6. illus-task-lifecycle.svg: task-lifecycle.dot
  7. dot -Tsvg -o $@ $<
  8. index.html: index.md index.css illus-task-lifecycle.svg
  9. pandoc --from markdown --to html --standalone --css $(word 2,$^) --output $@ $<
  10. clean:
  11. rm -f index.html task-lifecycle.dot