summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e9c8ec27497c08110d56278846ec84e043555594 (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
HTML := index.html
CSS  := style.css

PARTIALS := $(addprefix partials/, meta.html nav.html footer.html)
WELLKNOWN := $(addprefix .well-known/, keybase.txt)

FILES := $(HTML) $(CSS) sitemap.xml sitemap1.xml

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

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

build/%.html: src/%.html $(PARTIALS)
	@./scripts/awink $< $@
	@echo Compiled $<  $@

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

build/%.xml: src/%.xml
	@install -Dm644 $< $@
	@echo Compiled $<  $@

build/.well-known/%: .well-known/%
	@install -Dm644 $< $@
	@echo Compiled $<  $@

partials/%: