tomcrypt/parsenames.pl

32 lines
522 B
Perl
Raw Normal View History

2004-12-30 18:55:53 -05:00
#!/usr/bin/perl
#
# Splits the list of files and outputs for makefile type files
# wrapped at 80 chars
#
2004-12-30 18:55:53 -05:00
# Tom St Denis
use strict;
use warnings;
my @a = split ' ', $ARGV[1];
my $b = $ARGV[0] . '=';
my $len = length $b;
2004-12-30 18:55:53 -05:00
print $b;
foreach my $obj (sort @a) {
$len = $len + length $obj;
2004-12-30 18:55:53 -05:00
$obj =~ s/\*/\$/;
2005-04-17 07:37:13 -04:00
if ($len > 100) {
print "\\\n";
$len = length $obj;
2004-12-30 18:55:53 -05:00
}
print $obj . ' ';
}
if ($ARGV[0] eq 'HEADERS') {
print 'testprof/tomcrypt_test.h';
2004-12-30 18:55:53 -05:00
}
2005-04-17 07:37:13 -04:00
2004-12-30 18:55:53 -05:00
print "\n\n";
2005-06-08 20:08:13 -04:00
2014-04-29 15:13:49 -04:00
# $Source$
# $Revision$
# $Date$