kskit/Makefile
2022-04-08 21:02:20 +00:00

17 lines
256 B
Makefile

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