summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/bibtex/ietfbibs/Makefile
blob: c6f7b0b561a193857f042c795514af0248793fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY = all clean

LATEX = latexmk -xelatex

all: rfcs.pdf ids.pdf

clean:
	$(LATEX) -C
	$(RM) rfcs.bib rfcs.bbl rfcs.run.xml
	$(RM) ids.bib ids.bbl ids.run.xml
	$(RM) -r auto

rfcs.bib:
	./rfc2bib >| rfcs.bib

ids.bib:
	./id2bib >| ids.bib

%.pdf: %.tex %.bib
	$(LATEX) $*