blob: 7fa19fb21600c66c5f13df3c8c26357b51cb6244 [file] [log] [blame]
#!/usr/bin/env bash
#
# Copyright 2016-2023 The Khronos Group Inc.
#
# SPDX-License-Identifier: Apache-2.0
# makeExt - invoke Makefile with the right options to build with a
# specific extension included. Only one extension may be specified;
# for more complex builds, invoke 'makeSpec' directly.
#
# Usage: makeExt extension targets
extension=$1
shift
./makeSpec -clean -spec core -extension $extension $*