Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 1 | #!/usr/bin/env perl |
| 2 | # |
| 3 | # This is a simple script that generates Makefile "TOOLS" flags. |
| 4 | # |
| 5 | # This is not used at all during part of any build or CI. It's a convenience |
| 6 | # tool for open_pdks contributors. |
| 7 | # |
| 8 | open(FH, '<', "./tools.txt") or die $!; |
| 9 | while (<FH>) { |
| 10 | chomp $_; |
| 11 | my $capitalized = uc $_; |
| 12 | my $disable_macro = "$capitalized\_DISABLED"; |
| 13 | print <<"HD" |
| 14 | # $disable_macro = 0 | 1 |
| 15 | $disable_macro = \@$disable_macro\@ |
| 16 | ifneq (\${$disable_macro}, 1) |
| 17 | TOOLS += $_ |
| 18 | endif |
| 19 | |
| 20 | HD |
| 21 | } |