9d7c01f810
Replace the BSD license header with the SPDX tag for scripting files with only an Intel copyright on them. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
25 lines
599 B
Bash
Executable File
25 lines
599 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
# Auto-generate a Makefile in build directory
|
|
# Args:
|
|
# $1: path of project src root
|
|
# $2: path of build dir (can be relative to $1)
|
|
|
|
echo "# Automatically generated by gen-build-mk.sh"
|
|
echo
|
|
echo "ifdef O"
|
|
echo "ifeq (\"\$(origin O)\", \"command line\")"
|
|
echo "\$(error \"Cannot specify O= as you are already in a build directory\")"
|
|
echo "endif"
|
|
echo "endif"
|
|
echo
|
|
echo "MAKEFLAGS += --no-print-directory"
|
|
echo
|
|
echo "all:"
|
|
echo " @\$(MAKE) -C $1 O=$2"
|
|
echo
|
|
echo "%::"
|
|
echo " @\$(MAKE) -C $1 O=$2 \$@"
|