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