Feature: Verteilen via Zip-Datei

This commit is contained in:
Nero 2022-04-08 21:44:19 +00:00
parent 8aee4720f0
commit 5d5c4888c3
2 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
*.aux
*.log
*.out
*.zip

View File

@ -1,6 +1,7 @@
NAME=KsKit
DISTFILES=$(NAME).pdf $(NAME).html img/* *.lua
default: $(NAME).html $(NAME).pdf
default: $(DISTFILES)
$(NAME).html: README.md
awk -f grapho/md2html <$< >$@
@ -12,5 +13,8 @@ $(NAME).pdf: $(NAME).tex
pdflatex $<
pdflatex $<
$(NAME).zip: $(DISTFILES)
zip $@ $(DISTFILES)
clean:
rm -f *.html *.pdf *.tex *.aux *.log *.out
rm -f *.html *.pdf *.tex *.aux *.log *.out *.zip