about summary refs log tree commit diff stats
path: root/doc/Makefile
blob: baad9d1b7eea6081e6cb88c73ad894f2cd31c76a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.POSIX:
.DELETE_ON_ERROR:

# Outputs other than Gemini aren't required

GEMINI := breaking_rules.gmi bane.20.cdr15.gmi

.PHONY: all
all: $(GEMINI)
# lkbib.txt can be made manually as needed

# Write gfm.
# Beyond that, YAGNI.

# None of setting GROFF_NO_SGR, using the "-c" option,
# or piping through ul worked.
# GROFF_NO_SGR=1 groff -Tutf8 -R -ms -k -Kutf8 -c macros.ms lkbib.ms | ul > $@
lkbib.txt: macros.ms lkbib.ms refs.i
	groff -Tutf8 -R -ms -k -Kutf8 macros.ms lkbib.ms > $@

%.gmi: %.md
	md2gemini -m -l copy --code-tag lisp $^ > $@
	# lowdown -s -Tgemini $^ > $@
	# Lowdown isn't mature enough yet, no table support

refs.i: refs
	indxbib $^

.PHONY: clean
clean:
	$(RM) $(GEMINI) lkbib.txt

.PHONY: push
push: $(GEMINI)
	scp -6 $^ dbane@republic.circumlunar.space:/usr/home/dbane/gemini/lsp_doc