blob: df8e0c2b85681d513782a3b7b6a9a0086b52f7e3 (
plain) (
tree)
|
|
# GNU Make is required
.PHONY: upload default
default: build/language_description.html build/index.html build/style.css
.SUFFIXES: .md .html
build/%.html: %.md
mkdir -p build
pandoc --mathml -so $@ -c style.css $<
build/%.css: %.css
mkdir -p build
cp $< $@
upload:
rsync --delete-after --recursive --mkpath build/ runxiyu.org:/var/www/docs/e2/
|