Commit 09aa868f628b55f9b1523aba9951a95555209048
1 parent
709f5a97
Exists in
master
and in
79 other branches
docs: don't require inkscape to build
changes to .svg need to be pre-converted to .png
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
docs/Makefile
... | ... | @@ -12,7 +12,9 @@ _build/dns.rst: ../test/dns_test.sh |
12 | 12 | (cd .. && sh test/dns_test.sh --doc) > $@ |
13 | 13 | |
14 | 14 | BUILT += $(patsubst %.svg, _build/%.png, $(wildcard *.svg)) |
15 | -_build/%.png: %.svg | |
15 | +_build/%.png: %.png | |
16 | + | |
17 | +arquitetura.png: arquitetura.svg | |
16 | 18 | inkscape --export-area-page --export-width=800 --export-width=600 --export-png=$@ $< |
17 | 19 | |
18 | 20 | BUILT += $(patsubst %.in, _build/%, $(wildcard *.in)) | ... | ... |
49.6 KB