summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: df713e2524ae1cbe280c82663cb0220923f47c56 (plain) (blame)
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
.PHONY: check clean serve

gendeps   = ${filter-out %/index.html,${wildcard ${1}/*}}
includes := ${wildcard include/*}
srcdirs  := ${shell find src -type d}
outdirs  := ${srcdirs:src%=out%}
sources  := ${shell find src -type f -regextype egrep -regex '.*/(index\.html|.*\.(css|svg|png))'}
outputs  := ${sources:src/%=out/%}

all: ${outdirs} ${outputs}

${outdirs}:
	@mkdir -p $@
	@printf 'MKDIR\t%s\n' "$@"

out/%: src/%
	@cp $< $@
	@printf 'CP\t%s\n' "$@"

out/%.html: src/%.html ${includes}
	@m4 -P ${foreach dir,${^D},-I${dir}} include/lib.m4 $< >$@
	@printf 'M4\t%s\n' "$@"

src/srp/fw-ec/index.html: ${call gendeps,src/srp/fw-ec}
	@touch $@
	@touch $@

check:
	LANG=en_US.UTF-8 find src -name 'index.html' -exec \
		aspell --home-dir=./ --ignore-case check {} \;

clean:
	rm -rf out

serve:
	darkhttpd out --daemon