diff --git a/docs/E2E/OrgProfile.odt b/docs/E2E/OrgProfile.odt new file mode 100644 index 00000000..2a4b3bdf Binary files /dev/null and b/docs/E2E/OrgProfile.odt differ diff --git a/docs/E2E/ProjectsProfile.odt b/docs/E2E/ProjectsProfile.odt new file mode 100644 index 00000000..559e365d Binary files /dev/null and b/docs/E2E/ProjectsProfile.odt differ diff --git a/docs/E2E/UserProfile.odt b/docs/E2E/UserProfile.odt new file mode 100644 index 00000000..da539521 Binary files /dev/null and b/docs/E2E/UserProfile.odt differ diff --git a/docs/Makefile b/docs/Makefile index 44b54f60..cb087eea 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -21,15 +21,31 @@ PACKAGE := org.tm-admin.py NAME := tm-admin VERSION := 0.1.0 -DRAW := $(wildcard */*.odt) +DRAW := $(wildcard E2E/*.odt) +PNGS := $(DRAW:.odt=.png) +PDFS := $(DRAW:.odt=.pdf) -all: $(DRAW) +all: pngs pdfs + @echo "$(DRAW)" + +pngs: $(PNGS) + +pdfs: $(PDFS) apidoc: -@doxygen %.png: %.odt @echo "Generating $@ file for use in Markdown files" - -libreoffice --draw --convert-to png "$<" + -libreoffice --draw --headless --convert-to png "$<" + # -@mv *Profile.png images/ + +%.pdf: %.odt + @echo "Generating $@ file for use in Markdown files" + -libreoffice --draw --headless --convert-to pdf "$<" + # -@mv *Profile.png images + +clean: + -$(RM) *.png *.pdf force: