Implemented -v parameter

This commit is contained in:
2025-03-17 14:42:29 +01:00
parent f21120e9f7
commit 756407d407
5 changed files with 96 additions and 33 deletions

View File

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