blob: 0a544949c4fe6c3211afe9020e3365c3492190df [file] [log] [blame]
Tim Edwards8292c902020-12-24 16:25:25 -05001#!/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#
8open(FH, '<', "./tools.txt") or die $!;
9while (<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\@
16ifneq (\${$disable_macro}, 1)
17 TOOLS += $_
18endif
19
20HD
21}