forked from LK8000/LK8000
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakeall
More file actions
executable file
·34 lines (25 loc) · 764 Bytes
/
makeall
File metadata and controls
executable file
·34 lines (25 loc) · 764 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
34
#!/bin/bash
set -e
start=`date`
NB_CORES=$(grep -c '^processor' /proc/cpuinfo)
export MAKEFLAGS="-j$((NB_CORES+1)) -l${NB_CORES}"
echo "---------------------------------------------------"
make TARGET=PC clean
make TARGET=PC distrib
echo "---------------------------------------------------"
make TARGET=PCX64 clean
make TARGET=PCX64 distrib
echo "---------------------------------------------------"
make TARGET=LINUX clean
make TARGET=LINUX distrib
echo "---------------------------------------------------"
make TARGET=KOBO clean
make TARGET=KOBO
echo "---------------------------------------------------"
pushd android-studio
./gradlew assemble
popd
echo "DONE -----------"
echo "started $start"
echo "ended `date`"
echo PLEASE UPDATE BUILDNUMBER