Revision fe5145e94b5f197ddb94b13aa57d2013c787582b authored by Ewgenij Gawrilow on 16 July 2016, 19:24:41 UTC, committed by Ewgenij Gawrilow on 16 July 2016, 19:24:41 UTC
- add missing includes for C++14
- correct configuration of compiler
- adjust to new syntax of big object methods and function calls
- adjust to new signatures of lattice_tools
- remove some superfluous data copying
1 parent 0e5a017
Raw File
makedoc.g
##  this creates the documentation, needs: GAPDoc package, latex, pdflatex,
##  mkindex, dvips
##  
##  Call this with GAP.
##

LoadPackage( "GAPDoc" );

SetGapDocLaTeXOptions( "utf8" );

bib := ParseBibFiles( "doc/GradedRingForHomalg.bib" );
WriteBibXMLextFile( "doc/GradedRingForHomalgBib.xml", bib );

Read( "ListOfDocFiles.g" );

PrintTo( "VERSION", PackageInfo( "GradedRingForHomalg" )[1].Version );

MakeGAPDocDoc( "doc", "GradedRingForHomalg", list, "GradedRingForHomalg" );

GAPDocManualLab("GradedRingForHomalg");

QUIT;
back to top