summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0148106b0240b71f6b8e921997bfad03cb13cfc4 (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
HTML := journal.html about.html
CSS  := style.css
RESOURCES := glider.png

PARTIALS := $(addprefix partials/, meta.html nav.html footer.html)

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

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

clean:
	rm -rf build/*

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

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

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

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

partials/%: