Skip to content

Commit

Permalink
doc: Enable Markdown doc compilation
Browse files Browse the repository at this point in the history
The initial commit simply uncoments the Markdown compilation lines from #3849. This requires the actual Markdown files to be present, so this breaks the CI. This will stay like this for now. The PR is mean to be tested together with the Markdown files generated by script in #4620 (switch to this branch after generating the files).

Subsequent commits will add fixes of the compilation (missing tools, files, etc.).
  • Loading branch information
wenzeslaus committed Feb 4, 2025
1 parent e289f0a commit 5bd41f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/Make/DB.make
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include $(MODULE_TOPDIR)/include/Make/Compile.make

dbmi: $(DBDRIVERDIR)/$(PGM)$(EXE) db_html

db_html: $(HTMLDIR)/grass-$(PGM).html $(MANDIR)/grass-$(PGM).$(MANSECT) # $(MDDIR)/source/grass-$(PGM).md
db_html: $(HTMLDIR)/grass-$(PGM).html $(MANDIR)/grass-$(PGM).$(MANSECT) $(MDDIR)/source/grass-$(PGM).md

$(DBDRIVERDIR)/$(PGM)$(EXE): $(ARCH_OBJS) $(DEPENDENCIES)
$(call linker)
Expand Down
4 changes: 2 additions & 2 deletions include/Make/GuiScript.make
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ ifndef CROSS_COMPILING
$(MAKE) $(CMDHTML)
-rm -f g.gui.*.tmp.html
$(MAKE) $(GUIHTML)
# $(MAKE) $(CMDMAN)
# $(MAKE) $(GUIMAN)
$(MAKE) $(CMDMAN)
$(MAKE) $(GUIMAN)
endif

$(HTMLDIR)/g.gui.%.html: g.gui.%.html g.gui.%.tmp.html | $(HTMLDIR)
Expand Down
2 changes: 1 addition & 1 deletion include/Make/Html.make
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ html:

else

html: $(HTMLDIR)/$(PGM).html $(MANDIR)/$(PGM).$(MANSECT) # $(MDDIR)/source/$(PGM).md
html: $(HTMLDIR)/$(PGM).html $(MANDIR)/$(PGM).$(MANSECT) $(MDDIR)/source/$(PGM).md

endif

Expand Down

0 comments on commit 5bd41f4

Please sign in to comment.