forked from digraphs/Digraphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makedoc.g
38 lines (34 loc) · 1.06 KB
/
makedoc.g
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
## this creates the documentation, needs: GAPDoc package, latex, pdflatex,
## mkindex, dvips
##
## Call this with GAP in the package directory:
##
## gap makedoc.g
##
PACKAGE := "Digraphs";
PrintTo(".VERSION", PackageInfo(PACKAGE)[1].Version, "\n");
LoadPackage("GAPDoc");
_DocXMLFiles := ["attr.xml",
"cliques.xml",
"constructors.xml",
"digraph.xml",
"display.xml",
"examples.xml",
"grahom.xml",
"grape.xml",
"io.xml",
"isomorph.xml",
"labels.xml",
"oper.xml",
"orbits.xml",
"planar.xml",
"prop.xml",
"utils.xml",
"../PackageInfo.g"];
MakeGAPDocDoc(Concatenation(PackageInfo("digraphs")[1]!.
InstallationPath, "/doc"),
"main.xml", _DocXMLFiles, "Digraphs", "MathJax",
"../../..");
CopyHTMLStyleFiles("doc");
GAPDocManualLab(PACKAGE);
QUIT;