make.jl 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # This file is part of Reduce.jl. It is licensed under the MIT license
  2. # Copyright (C) 2017 Michael Reed
  3. using Documenter, SyntaxTree, ForceImport, Reduce
  4. makedocs(
  5. # options
  6. modules = [Reduce,SyntaxTree,ForceImport],
  7. doctest = false,
  8. format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
  9. sitename = "Reduce.jl",
  10. authors = "Michael Reed",
  11. pages = Any[
  12. "Home" => "index.md",
  13. "Library" => "library.md",
  14. "User's Manual" => Any[
  15. "man/acknowledgement.md",
  16. "man/01-introduction.md",
  17. "man/02-structure.md",
  18. "man/03-expressions.md",
  19. "man/04-lists.md",
  20. "man/05-statements.md",
  21. "man/06-commands-declarations.md",
  22. "man/07-prefix-ops.md",
  23. "man/08-display.md",
  24. "man/09-polynomials.md",
  25. "man/10-properties.md",
  26. "man/11-substitution.md",
  27. "man/12-file-io.md",
  28. "man/13-interactive.md",
  29. "man/14-matrix.md",
  30. "man/15-procedures.md",
  31. "man/16-packages.md",
  32. "man/17-symbolic.md",
  33. "man/18-physics.md",
  34. "man/19-rlisp.md",
  35. "man/20-maintaining.md",
  36. "man/A-reserved.md",
  37. "man/B-bibliography.md",
  38. "man/C-changelog.md",
  39. "man/index.md"
  40. ]
  41. ]
  42. )
  43. deploydocs(
  44. repo = "github.com/chakravala/Reduce.jl.git",
  45. target = "build",
  46. deps = nothing,
  47. make = nothing
  48. )