diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-20 16:12:22 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-20 16:12:22 +0200 |
commit | d6eaa7a8a6e4332c473368230e0a0782a737bd39 (patch) | |
tree | f51eca26c36e92a15205e5a9f1d3654144f4a3cf /docs/makefile | |
parent | ebcc6e19d2fdddbbce6d3ac93ec9ac29663a1d7e (diff) |
small refactor + create software design document
Diffstat (limited to 'docs/makefile')
-rw-r--r-- | docs/makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/makefile b/docs/makefile index 496a6e6..1fbb5b4 100644 --- a/docs/makefile +++ b/docs/makefile @@ -1,6 +1,7 @@ all: plan.pdf -all: requirements.pdf +all: reqs.pdf all: research.pdf +all: design.pdf # include font.mk @@ -15,9 +16,6 @@ ASCIIDOCTOR_ARGS += --require asciidoctor-pdf # ASCIIDOCTOR_ARGS += --require ./plugin/helloworld ASCIIDOCTOR_ARGS += --require asciidoctor-interdoc-reftext ASCIIDOCTOR_ARGS += --backend pdf -ASCIIDOCTOR_ARGS += --attribute pdf-theme=./theme.yml -# ASCIIDOCTOR_ARGS += --attribute pdf-fontsdir=./res/font -ASCIIDOCTOR_ARGS += --attribute bibtex-file=./share/refs.bib %.pdf: %.adoc $(PDFDEPS) bundle exec asciidoctor $(ASCIIDOCTOR_ARGS) $< |