blob: 8911fdc7c2c754c6315e3707cd1c959f6e07d524 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
all: index.html blog/index.html blog/gentoo-on-gcloud.html
index.html: index.org
emacs -batch $< -e 'org-html-export-to-html'
blog/index.html: blog/index.org
emacs -batch $< -e 'org-html-export-to-html'
blog/gentoo-on-gcloud.html: blog/gentoo-on-gcloud.org
emacs -batch $< -e 'org-html-export-to-html'
install:
mkdir srv srv/blog
cp *.html srv
cp -r blog srv
clean:
rm -rf *.html blog/*.html srv
|