a3xelte: Import common extract-utils
[GitHub/LineageOS/android_device_samsung_a3xelte.git] / setup-makefiles.sh
CommitLineData
56e91914
DW
1#!/bin/bash
2# Copyright (C) 2017 The LineageOS Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -e
17
18VENDOR=samsung
19DEVICE_COMMON=a3xelte
20
21export INITIAL_COPYRIGHT_YEAR=2017
22
23# Load extractutils and do some sanity checks
24MY_DIR="${BASH_SOURCE%/*}"
25if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
26
27LINEAGE_ROOT="$MY_DIR"/../../..
28
29HELPER="$LINEAGE_ROOT"/vendor/lineage/build/tools/extract_utils.sh
30if [ ! -f "$HELPER" ]; then
31 echo "Unable to find helper script at $HELPER"
32 exit 1
33fi
34. "$HELPER"
35
36# Initialize the helper
37setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true
38
39# Copyright headers and guards
40write_headers "a3xelte"
41
42# The standard blobs
43write_makefiles "$MY_DIR"/proprietary-files.txt true
44
45# Done
46write_footers