Blame view

Giac_maj/libtommath-0.39/gen.pl 586 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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: $!";