Added framework for ownership analysis.
[IRC.git] / Robust / src / Analysis / OwnershipAnalysis / makefile
1 GRAPH=testGraph
2
3 all: view
4
5 view: PNGs
6         eog *.png &
7
8 PNGs: DOTs
9         d2p *.dot
10
11 DOTs: run
12
13 run:
14         java -classpath ../.. Analysis.OwnershipAnalysis.TestOwnership
15
16 clean:
17         rm -f *~
18         rm -f *.dot
19         rm -f *.png