17 lines
256 B
Makefile
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
|