]> granicus.if.org Git - libvpx/commitdiff
iosbuild.sh: Add missing function comments.
authorTom Finegan <tomfinegan@google.com>
Tue, 17 Jun 2014 00:04:38 +0000 (17:04 -0700)
committerTom Finegan <tomfinegan@google.com>
Tue, 17 Jun 2014 00:04:38 +0000 (17:04 -0700)
Change-Id: Ib23a59475d566a7b7f44071614d730ceecfcfa60

build/make/iosbuild.sh

index bc3cc94b017eb1e76d44b6f9e6b4081589f002be..230c0ce8c77d6b8c5e3ef485a45e8361a0c6764d 100755 (executable)
@@ -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}"