summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-12-08 18:19:13 +0100
committerDaniel Friesel <derf@finalrewind.org>2020-12-08 18:19:13 +0100
commit812899797d6d8ea773bf960cd74680d20043c5a4 (patch)
tree470bb05de36285e9f8b86fa34daebd163e3860ed /script
parente1526bb2c84b315c72a089dbb50447183d4b1685 (diff)
add licensing information
Diffstat (limited to 'script')
-rwxr-xr-xscript/g++wrap5
-rwxr-xr-xscript/mkconfig4
-rwxr-xr-xscript/randconfig4
-rwxr-xr-xscript/size.py4
-rwxr-xr-xscript/static-stack-analyze.pl42
5 files changed, 21 insertions, 38 deletions
diff --git a/script/g++wrap b/script/g++wrap
index fd0e5d9..f9903ed 100755
--- a/script/g++wrap
+++ b/script/g++wrap
@@ -1,4 +1,9 @@
#!/bin/zsh
+#
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
for i in {1..$#}; do
if [[ $argv[$i] == *_agxx_* && -f $argv[$i] ]]; then
diff --git a/script/mkconfig b/script/mkconfig
index c11a819..4cb5666 100755
--- a/script/mkconfig
+++ b/script/mkconfig
@@ -1,4 +1,8 @@
#!/bin/sh
+#
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
cat <<EOF
diff --git a/script/randconfig b/script/randconfig
index 21b6840..7a4ec82 100755
--- a/script/randconfig
+++ b/script/randconfig
@@ -1,4 +1,8 @@
#!/bin/sh
+#
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
# randconfig occasionally generates invalid configs which lack an application.
# Try generating a valid config up to ten times.
diff --git a/script/size.py b/script/size.py
index e553314..48888cb 100755
--- a/script/size.py
+++ b/script/size.py
@@ -1,4 +1,8 @@
#!/usr/bin/env python3
+#
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
import json
import re
diff --git a/script/static-stack-analyze.pl b/script/static-stack-analyze.pl
index 3089d3d..003be15 100755
--- a/script/static-stack-analyze.pl
+++ b/script/static-stack-analyze.pl
@@ -1,4 +1,8 @@
#!/usr/bin/env perl
+#
+# Copyright 2018 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
use strict;
use warnings;
@@ -263,41 +267,3 @@ for my $function (reverse sort { ($call_graph{$a}{max_cost} <=> $call_graph{$b}{
$call_graph{$function}{max_depth});
}
}
-
-__END__
-
-=head1 NAME
-
-=head1 SYNOPSIS
-
-=head1 VERSION
-
-=head1 DESCRIPTION
-
-=head1 OPTIONS
-
-=over
-
-=back
-
-=head1 EXIT STATUS
-
-=head1 CONFIGURATION
-
-None.
-
-=head1 DEPENDENCIES
-
-=over
-
-=back
-
-=head1 BUGS AND LIMITATIONS
-
-=head1 AUTHOR
-
-Copyright (C) 2018 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>
-
-=head1 LICENSE
-
- 0. You just DO WHAT THE FUCK YOU WANT TO.