Initial commit
This commit is contained in:
commit
edd2e9f775
7 changed files with 130 additions and 0 deletions
16
Makefile
Executable file
16
Makefile
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue