1#!/bin/bash -eu 2 3# make-in-docker.sh 4# 5# Purpose 6# ------- 7# This runs make in a Docker container. 8# 9# See also: 10# - scripts/docker_env.sh for general Docker prerequisites and other information. 11 12# Copyright The Mbed TLS Contributors 13# SPDX-License-Identifier: Apache-2.0 14# 15# Licensed under the Apache License, Version 2.0 (the "License"); you may 16# not use this file except in compliance with the License. 17# You may obtain a copy of the License at 18# 19# http://www.apache.org/licenses/LICENSE-2.0 20# 21# Unless required by applicable law or agreed to in writing, software 22# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 23# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 24# See the License for the specific language governing permissions and 25# limitations under the License. 26 27source tests/scripts/docker_env.sh 28 29run_in_docker make $@ 30