-
Notifications
You must be signed in to change notification settings - Fork 3
/
makedoc.g
30 lines (27 loc) · 929 Bytes
/
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
# SingularInterface: A GAP interface to Singular
#
# Copyright of SingularInterface belongs to its developers.
# Please refer to the COPYRIGHT file for details.
#
# SPDX-License-Identifier: GPL-2.0-or-later
if fail = LoadPackage("AutoDoc", ">= 2016.01.21") then
Error("AutoDoc 2016.01.21 or newer is required");
fi;
AutoDoc( rec(
scaffold := rec(
entities := [ "Singular", "Plural", "SCA", "homalg" ],
appendix := [ "appendix-implementation.xml" ]
),
autodoc :=
rec(
files := [
"doc/intro.autodoc",
"doc/ring.autodoc",
"doc/matrix.autodoc",
"doc/integer.autodoc",
],
),
maketest := rec( folder := ".",
commands := [ "LoadPackage( \"SingularInterface\" );" ],
)
));