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