OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 3 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
5 # BSD-style license that can be found in the LICENSE.md file. | 5 # BSD-style license that can be found in the LICENSE.md file. |
6 | 6 |
7 # Build steps | 7 # Build steps |
8 # - Run immic. | 8 # - Run immic. |
9 # - Run servicec. | 9 # - Run servicec. |
10 # - Build fletch library generators for target platforms (here ia32 and arm). | 10 # - Build fletch library generators for target platforms (here ia32 and arm). |
11 # - In the servicec java output directory build libfletch using ndk-build. | 11 # - In the servicec java output directory build libfletch using ndk-build. |
12 # - Copy/link output files from immic and servicec to the jni and java director
ies. | 12 # - Copy/link output files from immic and servicec to the jni and java director
ies. |
13 # - Generate a snapshot of your Dart program and add it to you resources dir. | 13 # - Generate a snapshot of your Dart program and add it to you resources dir. |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 fi | 97 fi |
98 | 98 |
99 set +x | 99 set +x |
100 | 100 |
101 if [[ $# -eq 1 ]]; then | 101 if [[ $# -eq 1 ]]; then |
102 echo | 102 echo |
103 echo "Only ran task $1." | 103 echo "Only ran task $1." |
104 echo "Possible tasks: immi, fletch, and snapshot" | 104 echo "Possible tasks: immi, fletch, and snapshot" |
105 echo "If Fletch or any IMMI files changed re-run compile.sh without argument
s." | 105 echo "If Fletch or any IMMI files changed re-run compile.sh without argument
s." |
106 fi | 106 fi |
OLD | NEW |