summaryrefslogtreecommitdiffhomepage
path: root/gen.pl
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2006-03-08 13:16:18 +0000
committerMatt Johnston <matt@ucc.asn.au>2006-03-08 13:16:18 +0000
commit1c5fda515f96c27d4e3b732d887f418453f1cb14 (patch)
treebf90196389a9618de48c5acb5ce1d056aa347ce0 /gen.pl
Import of libtommath 0.35
From ltm-0.35.tar.bz2 SHA1 of 3f193dbae9351e92d02530994fa18236f7fde01c --HG-- branch : libtommath-orig extra : convert_revision : 2b4b13ac88b2a81e5c86ba868c92c6a452630e02
Diffstat (limited to 'gen.pl')
-rw-r--r--gen.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/gen.pl b/gen.pl
new file mode 100644
index 0000000..7236591
--- /dev/null
+++ b/gen.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/perl -w
+#
+# Generates a "single file" you can use to quickly
+# add the whole source without any makefile troubles
+#
+use strict;
+
+open( OUT, ">mpi.c" ) or die "Couldn't open mpi.c for writing: $!";
+foreach my $filename (glob "bn*.c") {
+ open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
+ print OUT "/* Start: $filename */\n";
+ print OUT while <SRC>;
+ print OUT "\n/* End: $filename */\n\n";
+ close SRC or die "Error closing $filename after reading: $!";
+}
+print OUT "\n/* EOF */\n";
+close OUT or die "Error closing mpi.c after writing: $!"; \ No newline at end of file