• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env bash
2#
3# Copyright 2016-2022 The Khronos Group Inc.
4#
5# SPDX-License-Identifier: Apache-2.0
6
7# makeExt - invoke Makefile with the right options to build with a
8# specific extension included. Only one extension may be specified;
9# for more complex builds, invoke 'makeSpec' directly.
10#
11# Usage: makeExt extension targets
12
13extension=$1
14shift
15
16./makeSpec -clean -spec core -extension $extension $*
17