Mohamed Kassem | 7a3f478 | 2020-10-27 12:31:18 -0700 | [diff] [blame] | 1 | #!/bin/sh |
agorararmard | 6c766a8 | 2020-12-10 18:13:12 +0200 | [diff] [blame] | 2 | # SPDX-FileCopyrightText: 2020 Efabless Corporation |
agorararmard | e5780bf | 2020-12-09 21:27:56 +0000 | [diff] [blame] | 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. |
agorararmard | afa96ea | 2020-12-09 23:37:31 +0200 | [diff] [blame] | 15 | # SPDX-License-Identifier: Apache-2.0 |
agorararmard | e5780bf | 2020-12-09 21:27:56 +0000 | [diff] [blame] | 16 | |
Mohamed Kassem | 7a3f478 | 2020-10-27 12:31:18 -0700 | [diff] [blame] | 17 | cat <<'EOT' > .gitignore |
| 18 | .DS_Store |
| 19 | *.vcd |
| 20 | *.raw |
| 21 | *.vvp |
| 22 | a.out |
| 23 | EOT |
| 24 | mkdir scripts ; echo "This folder contains miscelleneous useful scripts" > scripts/README.md |
| 25 | mkdir def ; echo "This folder contains *.def files related to this project" > def/README.md |
| 26 | mkdir gds ; echo "This folder contains *.gds files related to this project" > gds/README.md |
| 27 | mkdir verilog ; echo "This folder contains *.v files related to this project" > verilog/README.md |
| 28 | mkdir mag ; echo "This folder contains *.mag files related to this project" > mag/README.md |
| 29 | mkdir lef ; echo "This folder contains *.lef files related to this project" > lef/README.md |
| 30 | mkdir macros ; echo "This folder contains subcell & macro files related to this project" > macros/README.md |
| 31 | mkdir doc ; echo "This folder contains documents related to this project" > doc/README.md |
| 32 | mkdir ngspice ; echo "This folder contains ngspice related files related to this project" > ngspice/README.md |
| 33 | mkdir openlane ; echo "This folder contains openlane related files related to this project" > openlane/README.md |
| 34 | mkdir pkg ; echo "This folder contains packaging-related files related to this project" > pkg/README.md |
| 35 | mkdir test ; echo "This folder contains test-related files related to this project" > test/README.md |
| 36 | mkdir xspice ; echo "This folder contains xspice files related to this project" > xspice/README.md |
| 37 | mkdir spi ; echo "This folder contains *.spi files related to this project" > spi/README.md |
| 38 | mkdir qflow ; echo "This folder contains qflow-related files related to this project" > qflow/README.md |