fix makefile and fix typo
This commit is contained in:
parent
96cc00784f
commit
9df313146c
2 changed files with 7 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -1,7 +1,9 @@
|
||||||
all:
|
all: $(addsuffix .png, $(basename $(wildcard *.dot))) $(addsuffix .pdf, $(basename $(wildcard *.dot))) $(addsuffix .svg, $(basename $(wildcard *.dot)))
|
||||||
for dot in *.dot; do make $${dot%%.dot}.png; done
|
|
||||||
for dot in *.dot; do make $${dot%%.dot}.pdf; done
|
# all:
|
||||||
for dot in *.dot; do make $${dot%%.dot}.svg; done
|
# for dot in *.dot; do make $${dot%%.dot}.png; done
|
||||||
|
# for dot in *.dot; do make $${dot%%.dot}.pdf; done
|
||||||
|
# for dot in *.dot; do make $${dot%%.dot}.svg; done
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.png *.pdf *.svg
|
rm -f *.png *.pdf *.svg
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
digraph G {
|
digraph G {
|
||||||
node [ shape=box ]
|
node [ shape=box ]
|
||||||
rankdir=TB!;
|
rankdir=TB;
|
||||||
|
|
||||||
label="IPv4-to-IPv6 proxy by ungleich.ch"
|
label="IPv4-to-IPv6 proxy by ungleich.ch"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue