summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: db0853c3cd4f028f967dcd86c65ea915d5392035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
HTML := index.html journal.html about.html
CSS  := style.css isso.css
RESOURCES := glider.png

FILES := $(HTML) $(CSS) sitemap.xml pgp-key.txt \
         $(addprefix resources/, $(RESOURCES))

site: $(addprefix build/, $(FILES))

clean:
	-rm $(addprefix build/, $(FILES))

build/index.html: src/index.rst
	@./scripts/bupa index.html
	@echo Built index.html

build/about.html: src/about.rst
	@./scripts/bupa about.html
	@echo Built about.html

build/journal.html: $(shell find src/journal)
	@./scripts/bupa journal.html
	@echo Built journal

build/%.css: src/%.css
	@install -Dm644 $< $@
	@echo Copied $<  $@

build/resources/%: src/resources/%
	@install -Dm644 $< $@
	@echo Copied $<  $@

build/sitemap.xml: src/sitemap.xml
	@install -Dm644 $< $@
	@echo Copied $<  $@

build/pgp-key.txt: src/pgp-key.txt
	@install -Dm644 $< $@
	@echo Copied $<  $@