Optimized docs

This commit is contained in:
2025-03-20 15:08:18 +01:00
parent 4c29fc9f02
commit 096934e795
11 changed files with 28 additions and 22 deletions

View File

@@ -1,12 +1,12 @@
.PHONY: install deinstall refresh
install:
$(MAKE) -C sphinx html $(MAKEFLAGS)
$(MAKE) -C sphinx install $(MAKEFLAGS)
$(MAKE) -C docs html $(MAKEFLAGS)
$(MAKE) -C docs install $(MAKEFLAGS)
deinstall:
$(MAKE) -C sphinx clean $(MAKEFLAGS)
$(MAKE) -C docs clean $(MAKEFLAGS)
refresh:
$(MAKE) -C sphinx clean $(MAKEFLAGS)
$(MAKE) -C sphinx html $(MAKEFLAGS)
$(MAKE) -C docs clean $(MAKEFLAGS)
$(MAKE) -C docs html $(MAKEFLAGS)