1#!/usr/bin/env bash 2 3# Copyright 2016 The Fuchsia Authors 4# 5# Use of this source code is governed by a MIT-style 6# license that can be found in the LICENSE file or at 7# https://opensource.org/licenses/MIT 8 9DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 10 11# make a release build 12# 13# release builds are regular builds with DEBUG=0 and the -release suffix added to the build dir 14DEBUG=0 $DIR/make-parallel "$@" 15