added smaller version of directo for something in between tiny and full tests of...
[IRC.git] / Robust / src / Benchmarks / mlp / directto / mlp-small-for-testing / makefile
1 MAIN_CLASS=D2 #smalltest
2
3 PROGRAM=test
4 SOURCE_FILES=D2.java #smalltest.java
5
6 BUILDSCRIPT=~/research/Robust/src/buildscript
7 BSFLAGS= -debug -nooptimize -mainclass $(MAIN_CLASS) -justanalyze -ownership -ownallocdepth 1 -ownwritedots final -ownaliasfile aliases.txt -enable-assertions
8
9 all: $(PROGRAM).bin
10
11 view: PNGs
12         eog *.png &
13
14 PNGs: DOTs
15         d2p *COMPLETE*.dot
16
17 DOTs: $(PROGRAM).bin
18
19 $(PROGRAM).bin: $(SOURCE_FILES)
20         $(BUILDSCRIPT) $(BSFLAGS) -o $(PROGRAM) $(SOURCE_FILES)
21
22 clean:
23         rm -f  $(PROGRAM).bin
24         rm -fr tmpbuilddirectory
25         rm -f  *~
26         rm -f  *.dot
27         rm -f  *.png
28         rm -f  aliases.txt
29         rm -f  output.txt
30