-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (29 loc) · 852 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (29 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
all:
clean:
rm -f err out
clean_all: clean
rm -f ../err ../out
cd ../c++; make clean
verify_all: verify
cd ..; make verify
cd ../c++; make verify
echo
diff out good
diff ../out ../good
diff ../c++/out ../c++/good
./norm good | diff - ../good
wc ../good
verify:
./rpy python_test.py > out
./rpy python_dual.py >> out
./rpy python.convex_face_straight_line_drawing.py >> out
./rpy embedding_demo.py >> out
./rpy embedding_demo.2.py >> out
./rpy embedding_demo.3.py >> out
./rpy embedding_demo.4.py >> out
./rpy python_compact5.py 2>err >> out
./rpy python.convex_face_straight_line_drawing.2.py >> out
./rpy python.convex_face_straight_line_drawing.6coloring.py >> out
./rpy python.convex_face_straight_line_drawing.pentagons.py ../graphs/C36.1.a >> out
./rpy python_6coloring.py ../graphs/10000.a 2>err >> out
diff out good