diff --git a/Makefile b/Makefile index 2581e1c..73a6cf0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #MARKDOWN = $(HOME)/Library/Haskell/bin/pandoc -f markdown -t html MARKDOWN = peg-markdown --smart --notes -all: index.html index-ja.html index-ru.html index-cn.html +all: index.html index-ja.html index-ru.html index-cn.html index-ko.html index.html: header.html.inc effectivescala.html footer.html.inc cat $^ > $@ @@ -15,8 +15,11 @@ index-ru.html: header-ru.html.inc effectivescala-ru.html footer-ru.html.inc index-cn.html: header-cn.html.inc effectivescala-cn.html footer-cn.html.inc cat $^ > $@ +index-ko.html: header.html.inc effectivescala-ko.html footer.html.inc + cat $^ > $@ + pub: all - ./publish.sh index.html index-ja.html index-ru.html index-cn.html coll.png + ./publish.sh index.html index-ja.html index-ru.html index-cn.html index-ko.html coll.png %.html: %.mo cat $< | bash proc.sh | bash toc.sh | bash fmt.sh | $(MARKDOWN) > $@