From 714695947ea91b19e5fe78dd9f70a04455b48823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sat, 24 Jan 2026 16:19:26 +0000 Subject: [PATCH] base Makefile optimization --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f1addd1..2ac9b1a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ # just to convenietly be able to run "make" in the root directory .PHONY: all protokoll dokument tex clean -all: protokoll dokument +all: + $(MAKE) -Csrc -flev-protokoll.mk -flev-dokument.mk -j autodoc protokoll: $(MAKE) -Csrc -flev-protokoll.mk -j autodoc @@ -10,8 +11,7 @@ dokument: $(MAKE) -Csrc -flev-dokument.mk -j autodoc tex: - $(MAKE) -Csrc -flev-protokoll.mk -j tex - $(MAKE) -Csrc -flev-dokument.mk -j tex + $(MAKE) -Csrc -flev-protokoll.mk -flev-dokument.mk -j tex clean: git clean -xdf ./src