blob: 5b5b69cdf7deb4f11206aed43d9acdcaa51c2251 [file] [log] [blame]
Mohamed Kassem7a3f4782020-10-27 12:31:18 -07001#!/bin/sh
agorararmard6c766a82020-12-10 18:13:12 +02002# SPDX-FileCopyrightText: 2020 Efabless Corporation
agorararmarde5780bf2020-12-09 21:27:56 +00003#
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.
agorararmardafa96ea2020-12-09 23:37:31 +020015# SPDX-License-Identifier: Apache-2.0
agorararmarde5780bf2020-12-09 21:27:56 +000016
Mohamed Kassem7a3f4782020-10-27 12:31:18 -070017cat <<'EOT' > .gitignore
18.DS_Store
19*.vcd
20*.raw
21*.vvp
22a.out
23EOT
24mkdir scripts ; echo "This folder contains miscelleneous useful scripts" > scripts/README.md
25mkdir def ; echo "This folder contains *.def files related to this project" > def/README.md
26mkdir gds ; echo "This folder contains *.gds files related to this project" > gds/README.md
27mkdir verilog ; echo "This folder contains *.v files related to this project" > verilog/README.md
28mkdir mag ; echo "This folder contains *.mag files related to this project" > mag/README.md
29mkdir lef ; echo "This folder contains *.lef files related to this project" > lef/README.md
30mkdir macros ; echo "This folder contains subcell & macro files related to this project" > macros/README.md
31mkdir doc ; echo "This folder contains documents related to this project" > doc/README.md
32mkdir ngspice ; echo "This folder contains ngspice related files related to this project" > ngspice/README.md
33mkdir openlane ; echo "This folder contains openlane related files related to this project" > openlane/README.md
34mkdir pkg ; echo "This folder contains packaging-related files related to this project" > pkg/README.md
35mkdir test ; echo "This folder contains test-related files related to this project" > test/README.md
36mkdir xspice ; echo "This folder contains xspice files related to this project" > xspice/README.md
37mkdir spi ; echo "This folder contains *.spi files related to this project" > spi/README.md
38mkdir qflow ; echo "This folder contains qflow-related files related to this project" > qflow/README.md