Feature: Verteilen via Zip-Datei
This commit is contained in:
parent
8aee4720f0
commit
5d5c4888c3
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@
|
||||
*.aux
|
||||
*.log
|
||||
*.out
|
||||
*.zip
|
||||
|
8
Makefile
8
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user