comparison parsenames.pl @ 192:9cc34777b479 libtomcrypt

propagate from branch 'au.asn.ucc.matt.ltc-orig' (head 9ba8f01f44320e9cb9f19881105ae84f84a43ea9) to branch 'au.asn.ucc.matt.dropbear.ltc' (head dbf51c569bc34956ad948e4cc87a0eeb2170b768)
author Matt Johnston <matt@ucc.asn.au>
date Sun, 08 May 2005 06:36:47 +0000
parents 1c15b283127b
children 39d5d58461d6
comparison
equal deleted inserted replaced
164:cd1143579f00 192:9cc34777b479
1 #!/usr/bin/perl
2 #
3 # Splits the list of files and outputs for makefile type files
4 # wrapped at 80 chars
5 #
6 # Tom St Denis
7 @a = split(" ", $ARGV[1]);
8 $b = "$ARGV[0]=";
9 $len = length($b);
10 print $b;
11 foreach my $obj (@a) {
12 $len = $len + length($obj);
13 $obj =~ s/\*/\$/;
14 if ($len > 100) {
15 printf "\\\n";
16 $len = length($obj);
17 }
18 print "$obj ";
19 }
20 if ($ARGV[0] eq "HEADERS") { print "testprof/tomcrypt_test.h"; }
21
22 print "\n\n";