Skip to content
Snippets Groups Projects
Verified Commit 0233a18f authored by Martin Sjölund's avatar Martin Sjölund
Browse files

Fix remaining issues with lab1/2 swapped

parent 9414bcfb
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ help: ...@@ -16,7 +16,7 @@ help:
# Catch-all target: route all unknown targets to Sphinx using the new # Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
html: Makefile doxygen-lab1/xml/index.xml doxygen-lab3/xml/index.xml html: Makefile doxygen-lab2/xml/index.xml doxygen-lab3/xml/index.xml
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
rm -rf "$(SOURCEDIR)/html/_source" rm -rf "$(SOURCEDIR)/html/_source"
......
...@@ -135,7 +135,7 @@ imgmath_dvisvgm_args = ['--no-fonts', '--exact'] ...@@ -135,7 +135,7 @@ imgmath_dvisvgm_args = ['--no-fonts', '--exact']
highlight_language = 'c++' highlight_language = 'c++'
breathe_projects = { breathe_projects = {
"lab1": "../doxygen-lab1/xml", "lab2": "../doxygen-lab2/xml",
"lab3": "../doxygen-lab3/xml" "lab3": "../doxygen-lab3/xml"
} }
......
Source Documentation Source Documentation
==================== ====================
Lab1 Lab2
---- ----
.. doxygenindex:: .. doxygenindex::
:project: lab1 :project: lab2
Lab3-4 Lab3-4
------ ------
......
Lab 2: Scanner Specification Lab 1: Scanner Specification
============================ ============================
The scanner is the part of the compiler responsible for grouping characters in the input stream into tokens which are used by the parser. The scanner is the part of the compiler responsible for grouping characters in the input stream into tokens which are used by the parser.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment