diff options
author | Rob Austein <sra@hactrn.net> | 2009-07-21 06:10:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-07-21 06:10:41 +0000 |
commit | 76017f62ccfc477e15093c1fa5ec68b4e517bdb7 (patch) | |
tree | 871a17f88cc03ca8b062a8c902765d57cb84a25a | |
parent | 4a08994d2c7fa3eba158ed34502862bb8174faf1 (diff) |
Cleanup
svn path=/myrpki/Makefile; revision=2655
-rw-r--r-- | myrpki/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/myrpki/Makefile b/myrpki/Makefile index 2c21bec3..f330ac46 100644 --- a/myrpki/Makefile +++ b/myrpki/Makefile @@ -1,10 +1,6 @@ # $Id$ -#all:: myrpki.xml -#all:: lint -#all:: parse -#all:: graph -all:: load +all: schema.py myrpki.xml: myrpki.py asns.csv children.csv parents.csv prefixes.csv roas.csv python myrpki.py @@ -38,7 +34,7 @@ format: myrpki.xml xmllint --format myrpki.xml graph: - for b in bpki.myrpki bpki.rpkid bpki.pubd bpki.rootd; do python ../scripts/x509-dot.py $$b | dot -T ps2 | ps2pdf - $$b/graph.pdf; done + find . -name .svn -prune -o -type d -name 'bpki.*' -print | while read b; do python ../scripts/x509-dot.py $$b | dot -T ps2 | ps2pdf - $$b/graph.pdf; done verify: sh verify-bpki.sh |