kskit/Makefile

17 lines
256 B
Makefile
Raw Normal View History

2022-04-07 18:39:46 +02:00
NAME=KsKit
default: index.html $(NAME).pdf
index.html: README.md
awk -f grapho/md2html <$< >$@
$(NAME).tex: README.md
awk -f grapho/md2tex <$< >$@
$(NAME).pdf: $(NAME).tex
pdflatex $<
pdflatex $<
clean:
rm -f *.html *.pdf *.tex *.aux *.log *.out