blob: 68d3fb49e615127348d5cbf125a9de38030ef671 [file] [log] [blame]
agorararmard99dbc242020-11-23 19:56:38 +02001#!/bin/bash
2# Copyright 2020 Efabless Corporation
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
16export TARGET_PATH=$(pwd)
17git clone https://github.com/efabless/open_mpw_precheck.git
18cd open_mpw_precheck/dependencies
19sh build-docker.sh
agorararmarda30068c2020-12-03 22:11:01 +000020cd $TARGET_PATH/..
21export PDK_ROOT=$(pwd)/pdks
22mkdir $PDK_ROOT
23cd $TARGET_PATH/open_mpw_precheck/dependencies
agorararmarde5bdef02020-12-03 21:50:21 +000024sh build-pdk.sh
agorararmard99dbc242020-11-23 19:56:38 +020025cd $TARGET_DIR
26exit 0