blob: fd0085daec3753e60e9d3f41870beab4686ed3f9 [file] [log] [blame]
Jean-Luc Brouilletbcd5b9a2014-03-07 18:00:57 -08001#!/bin/bash
2#
3# Copyright (C) 2014 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18set -e
Jean-Luc Brouilletc5184e22015-03-13 13:51:24 -070019g++ Generator.cpp Specification.cpp GenerateHtmlDocumentation.cpp GenerateHeaderFiles.cpp GenerateTestFiles.cpp Scanner.cpp Utilities.cpp -g -std=c++11 -Wall -o generator
20
Jean-Luc Brouillet62e09932015-03-22 11:14:07 -070021mkdir -p test
22mkdir -p scriptc
23mkdir -p html
24
Jason Sams41371c72015-03-26 20:46:57 +000025./generator rs_allocation.spec rs_atomic.spec rs_core_math.spec rs_core.spec rs_debug.spec rs_element.spec rs_graphics.spec rs_math.spec rs_matrix.spec rs_mesh.spec rs_object.spec rs_program.spec rs_quaternion.spec rs_sampler.spec rs_time.spec rs_types.spec
Jean-Luc Brouilletc5184e22015-03-13 13:51:24 -070026
Jean-Luc Brouillet62e09932015-03-22 11:14:07 -070027rm -f ../../../cts/tests/tests/renderscript/src/android/renderscript/cts/generated/*
28mv test/* ../../../cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
29rmdir test
Jean-Luc Brouilletc5184e22015-03-13 13:51:24 -070030
Jean-Luc Brouillet62e09932015-03-22 11:14:07 -070031mv scriptc/*.rsh ../scriptc
32rmdir scriptc
Jean-Luc Brouilletc5184e22015-03-13 13:51:24 -070033
Jean-Luc Brouillet62e09932015-03-22 11:14:07 -070034# TODO handle the documentation files.
35rm html/*
36rmdir html
37
Jean-Luc Brouilletc5184e22015-03-13 13:51:24 -070038rm generator