lev-templates/Makefile

18 lines
361 B
Makefile
Raw Normal View History

2025-05-15 04:01:43 +00:00
# just to convenietly be able to run "make" in the root directory
.PHONY: all protokoll dokument tex clean
2025-05-15 22:52:30 +00:00
all: protokoll dokument
2025-05-15 04:01:43 +00:00
protokoll:
$(MAKE) -Csrc -flev-protokoll.mk -j autodoc
dokument:
$(MAKE) -Csrc -flev-dokument.mk -j autodoc
tex:
2025-05-15 22:52:30 +00:00
$(MAKE) -Csrc -flev-protokoll.mk -j tex
$(MAKE) -Csrc -flev-dokument.mk -j tex
2025-05-15 04:01:43 +00:00
clean:
git clean -xdf ./src