blob: 80bb6b31dcba99812edea4e1557ec93033542a0f (
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} src/style.css
@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
|