summaryrefslogtreecommitdiff
path: root/build/make/iosbuild.sh
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2014-06-16 17:04:38 -0700
committerTom Finegan <tomfinegan@google.com>2014-06-16 17:04:38 -0700
commit66bacc025af1cf3dcd06f2d584e90dd20d38c420 (patch)
tree373d78e36f64cba24cfaa66e8c21c4c1c47ee896 /build/make/iosbuild.sh
parent54547f682725c36f56bebb6eec22d0079b4e76f1 (diff)
downloadlibvpx-66bacc025af1cf3dcd06f2d584e90dd20d38c420.tar
libvpx-66bacc025af1cf3dcd06f2d584e90dd20d38c420.tar.gz
libvpx-66bacc025af1cf3dcd06f2d584e90dd20d38c420.tar.bz2
libvpx-66bacc025af1cf3dcd06f2d584e90dd20d38c420.zip
iosbuild.sh: Add missing function comments.
Change-Id: Ib23a59475d566a7b7f44071614d730ceecfcfa60
Diffstat (limited to 'build/make/iosbuild.sh')
-rwxr-xr-xbuild/make/iosbuild.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/build/make/iosbuild.sh b/build/make/iosbuild.sh
index bc3cc94b0..230c0ce8c 100755
--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -31,6 +31,8 @@ TARGETS="armv6-darwin-gcc
x86-iphonesimulator-gcc
x86_64-iphonesimulator-gcc"
+# Configures for the target specified by $1, and invokes make with the dist
+# target using $DIST_DIR as the distribution output directory.
build_target() {
local target="$1"
local old_pwd="$(pwd)"
@@ -48,6 +50,8 @@ build_target() {
vlog "***Done building target: ${target}***"
}
+# Configures and builds each target specified by $1, and then builds
+# VPX.framework.
build_targets() {
local lib_list=""
local targets="$1"
@@ -89,6 +93,8 @@ build_targets() {
# VPX.framework/VPX via lipo -info.
}
+# Trap function. Cleans up the subtree used to build all targets contained in
+# $TARGETS.
cleanup() {
cd "${ORIG_PWD}"