blob: 6ed6a01e67365efb87bc792e36706e6002b3b9a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# Misc Makefile
#
all: submodules readme index.html index.pdf
submodules:
@test -s .gitmodules && git submodule update --init --recursive
readme:
@pandoc README.md -o README.html
web_deploy:
@rsync -avz --delete ./ slides:/var/sites/slides/site/
# PDF
%.pdf: %.md
@echo Building $@...
@pandoc -t beamer index.md -o index.pdf
publish: readme web_deploy
|