Ran last commit from the wrong directory and didn't catch most of the
modified files.
diff --git a/scripts/print_tools_make.pl b/scripts/print_tools_make.pl
new file mode 100644
index 0000000..0a54494
--- /dev/null
+++ b/scripts/print_tools_make.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+#
+# This is a simple script that generates Makefile "TOOLS" flags.
+#
+# This is not used at all during part of any build or CI. It's a convenience
+# tool for open_pdks contributors.
+#
+open(FH, '<', "./tools.txt") or die $!;
+while (<FH>) {
+ chomp $_;
+ my $capitalized = uc $_;
+ my $disable_macro = "$capitalized\_DISABLED";
+ print <<"HD"
+# $disable_macro = 0 | 1
+$disable_macro = \@$disable_macro\@
+ifneq (\${$disable_macro}, 1)
+ TOOLS += $_
+endif
+
+HD
+}
\ No newline at end of file