tomcrypt/parsenames.pl

32 lines
522 B
Perl
Raw Normal View History

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