-
Notifications
You must be signed in to change notification settings - Fork 7
/
make_distdir.sh
executable file
·24 lines (20 loc) · 1.02 KB
/
make_distdir.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
#!/bin/bash -e
echo "------------------------------------------------------------"
echo "| Build openzwave in build/tmp |"
echo "------------------------------------------------------------"
python setup-lib.py install --root=build/tmp
python setup-api.py install --root=build/tmp
echo "------------------------------------------------------------"
echo "| Generate documentation |"
echo "------------------------------------------------------------"
cd docs
make html
cd ..
echo "------------------------------------------------------------"
echo "| Install openzwave in build/distdir |"
echo "------------------------------------------------------------"
python setup-lib.py install --root=build/distdir
python setup-api.py install --root=build/distdir
echo "------------------------------------------------------------"
echo "| Files are in build/distdir |"
echo "------------------------------------------------------------"