fix makefile and fix typo

This commit is contained in:
Nico Schottelius 2021-02-08 17:41:27 +01:00
parent 96cc00784f
commit 9df313146c
2 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,9 @@
all:
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
all: $(addsuffix .png, $(basename $(wildcard *.dot))) $(addsuffix .pdf, $(basename $(wildcard *.dot))) $(addsuffix .svg, $(basename $(wildcard *.dot)))
# all:
# 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:
rm -f *.png *.pdf *.svg

View File

@ -1,6 +1,6 @@
digraph G {
node [ shape=box ]
rankdir=TB!;
rankdir=TB;
label="IPv4-to-IPv6 proxy by ungleich.ch"