-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (17 loc) · 843 Bytes
/
Makefile
File metadata and controls
23 lines (17 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all: index.html participation.html contact.html archive.html
index.html: index.org white_clean.theme
emacs index.org --batch --eval \
"(progn (setq org-html-validation-link nil) (org-html-export-to-html))"
participation.html: participation.org white_clean.theme
emacs participation.org --batch --eval \
"(progn (setq org-html-validation-link nil) (org-html-export-to-html))"
contact.html: contact.org white_clean.theme
emacs contact.org --batch --eval \
"(progn (setq org-html-validation-link nil) (org-html-export-to-html))"
archive.html: archive.org white_clean.theme
emacs archive.org --batch --eval \
"(progn (setq org-html-validation-link nil) (org-html-export-to-html))"
clean:
rm -f index.html index.html~ participation.html participation.html~ \
contact.html contact.html~ archive.html archive.html~
.PHONY: clean