Initial commit

This commit is contained in:
Nero 2022-04-07 16:39:46 +00:00
commit edd2e9f775
7 changed files with 130 additions and 0 deletions

16
Makefile Executable file
View file

@ -0,0 +1,16 @@
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