forked from javaee/jax-rs-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (31 loc) · 876 Bytes
/
Makefile
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
#
SOURCES=spec.tex \
styles/jsr.sty \
styles/jsrfrontstyle.tex \
styles/jsrmainstyle.tex \
styles/lineno.sty \
styles/macros.tex \
styles/ntheorem.sty \
chapters/titlepage.tex \
chapters/license.tex \
chapters/intro.tex \
chapters/applications.tex \
chapters/resources.tex \
chapters/providers.tex \
chapters/context.tex \
chapters/environment.tex \
chapters/delegate.tex \
chapters/annotations.tex \
chapters/headers.tex \
chapters/changes.tex \
chapters/refs.tex \
references.bib
all: spec.pdf
spec.pdf: ${SOURCES}
pdflatex spec.tex
bibtex spec.aux
pdflatex spec.tex
pdflatex spec.tex
clean:
rm -f spec.aux spec.bbl spec.blg spec.log spec.out spec.pdf spec.thm spec.toc
rm -f chapters/*.aux styles/*.aux