Mercurial > docs > master
comparison scripts/create-deps @ 234:eba3744fb238
Added my set of helper scripts.
Removes the spell makefile target as it was not use{d,ful} anyway.
Btw: I should have ran script/doubles before I printed the document. :-/
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 16 Jul 2012 11:23:30 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
233:348b92755bef | 234:eba3744fb238 |
---|---|
1 #!/bin/sh | |
2 # | |
3 # Generate EPS files of the build dependency graph. | |
4 # | |
5 # Depends on dot(1) from GraphViz. | |
6 | |
7 if [ $# -ne 1 ] ; then | |
8 echo "Usage: $0 uip/Makefile.in" >&2 | |
9 exit 1 | |
10 fi | |
11 | |
12 awk -f makedeps2dot "$1" | dot -Teps -o deps_`date +%F`.eps |