2004-12-30 23:55:53 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
#
|
2017-02-24 20:50:37 +01:00
|
|
|
# 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
|
2017-02-25 15:14:35 +01:00
|
|
|
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;
|
2017-03-01 22:07:28 +01:00
|
|
|
foreach my $obj (sort @a) {
|
2017-02-25 15:14:35 +01:00
|
|
|
$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) {
|
2017-02-25 15:14:35 +01:00
|
|
|
print "\\\n";
|
|
|
|
$len = length $obj;
|
2004-12-30 23:55:53 +00:00
|
|
|
}
|
2017-02-25 15:14:35 +01: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$
|