blob: 9bcf6d529c792c5a98147880de11a20e5d452e13 [file] [log] [blame]
Mohamed Kassem7a3f4782020-10-27 12:31:18 -07001#!/bin/sh
agorararmarde5780bf2020-12-09 21:27:56 +00002# 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
Mohamed Kassem7a3f4782020-10-27 12:31:18 -070016cat <<'EOT' > .gitignore
17.DS_Store
18*.vcd
19*.raw
20*.vvp
21a.out
22EOT
23mkdir scripts ; echo "This folder contains miscelleneous useful scripts" > scripts/README.md
24mkdir def ; echo "This folder contains *.def files related to this project" > def/README.md
25mkdir gds ; echo "This folder contains *.gds files related to this project" > gds/README.md
26mkdir verilog ; echo "This folder contains *.v files related to this project" > verilog/README.md
27mkdir mag ; echo "This folder contains *.mag files related to this project" > mag/README.md
28mkdir lef ; echo "This folder contains *.lef files related to this project" > lef/README.md
29mkdir macros ; echo "This folder contains subcell & macro files related to this project" > macros/README.md
30mkdir doc ; echo "This folder contains documents related to this project" > doc/README.md
31mkdir ngspice ; echo "This folder contains ngspice related files related to this project" > ngspice/README.md
32mkdir openlane ; echo "This folder contains openlane related files related to this project" > openlane/README.md
33mkdir pkg ; echo "This folder contains packaging-related files related to this project" > pkg/README.md
34mkdir test ; echo "This folder contains test-related files related to this project" > test/README.md
35mkdir xspice ; echo "This folder contains xspice files related to this project" > xspice/README.md
36mkdir spi ; echo "This folder contains *.spi files related to this project" > spi/README.md
37mkdir qflow ; echo "This folder contains qflow-related files related to this project" > qflow/README.md