-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcompile.sh
55 lines (43 loc) · 1020 Bytes
/
compile.sh
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env bash
PYTHON=${PYTHON:-"python"}
echo "Building match_class op..."
cd ops/match_class
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
PYTHON=${PYTHON:-"python"}
echo "Building match_boundary op..."
cd ../match_boundary
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
PYTHON=${PYTHON:-"python"}
echo "Building follow_cluster op..."
cd ../follow_cluster
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
PYTHON=${PYTHON:-"python"}
echo "Building vcount_cluster op..."
cd ../vcount_cluster
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
PYTHON=${PYTHON:-"python"}
echo "Building split_repscore op..."
cd ../split_repscore
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
PYTHON=${PYTHON:-"python"}
echo "Building intra_collection op..."
cd ../intra_collection
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace