generated from ivoa-std/doc-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
80 lines (61 loc) · 2.38 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# ivoatex Makefile. The ivoatex/README for the targets available.
# short name of your document (edit $DOCNAME.tex; would be like RegTAP)
DOCNAME = VOTable
# count up; you probably do not want to bother with versions <1.0
DOCVERSION = 1.5
# Publication date, ISO format; update manually for "releases"
DOCDATE = 2024-02-13
# What is it you're writing: NOTE, WD, PR, REC, PEN, or EN
DOCTYPE = PR
# An e-mail address of the person doing the submission to the document
# repository (can be empty until a make upload is being made)
AUTHOR_EMAIL=???
# Source files for the TeX document (but the main file must always
# be called $(DOCNAME).tex
SOURCES = $(DOCNAME).tex role_diagram.pdf \
VOTable.attr.tex VOTable.elem.tex \
VOTable.xsd stc_example1.vot stc_example2.vot timesys_example.vot \
binary.pdf binary2.pdf
# List of image files to be included in submitted package (anything that
# can be rendered directly by common web browsers)
FIGURES = role_diagram.svg \
serial.png binary.png binary2.png circ2.gif leadsto2.gif oplus.gif
# List of PDF figures (figures that must be converted to pixel images to
# work in web browsers).
VECTORFIGURES =
# Additional files to distribute (e.g., CSS, schema files, examples...)
AUX_FILES = VOTable.xsd
# Include Makefile from ivoatex
include ivoatex/Makefile
# Custom build rules
XDOC_CLASSPATH = \
figicon/xdoc.jar:figicon/epsgraphics.jar:figicon/Text_shrunk.jar
BINFIGURE = java -classpath $(XDOC_CLASSPATH):. BinFigure
BinFigure.class: BinFigure.java
javac -classpath $(XDOC_CLASSPATH) BinFigure.java
binary.png: BinFigure.class
$(BINFIGURE) -png BINARY >$@
binary.pdf: BinFigure.class
$(BINFIGURE) -pdf BINARY >$@
binary2.png: BinFigure.class
$(BINFIGURE) -png BINARY2 >$@
binary2.pdf: BinFigure.class
$(BINFIGURE) -pdf BINARY2 >$@
clean-more: clean
rm -f binary.png binary.pdf binary2.png binary2.pdf BinFigure.class
rm -f ivoatex/tth_C/tth
ivoatex/Makefile:
@echo "*** ivoatex submodule not found. Initialising submodules."
@echo
git submodule update --init
STILTS ?= stilts
test:
@$(STILTS) xsdvalidate \
schemaloc="http://www.ivoa.net/xml/VOTable/v1.3=VOTable.xsd" \
timesys_example.vot
@$(STILTS) xsdvalidate \
schemaloc="http://www.ivoa.net/xml/VOTable/v1.3=VOTable.xsd" \
stc_example1.vot
@$(STILTS) xsdvalidate \
schemaloc="http://www.ivoa.net/xml/VOTable/v1.3=VOTable.xsd" \
stc_example2.vot