File: make.pl

package info (click to toggle)
dmrgpp 6.06-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 113,900 kB
  • sloc: cpp: 80,986; perl: 14,772; ansic: 2,923; makefile: 83; sh: 17
file content (22 lines) | stat: -rw-r--r-- 598 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

use strict;
use warnings;

use lib '../scripts';
use Make;

my @drivers = qw/integrator sparseSolverTest testCRSMatrix minimizer
                 combineContinuedFraction continuedFractionCollection range
                 kernelPolynomial linearPrediction options randomTest svd
		 testLapack threads testIsClass sumDecomposition
		 calculator closuresTest base64test testIoNg fit/;
my $fh;
open($fh, ">", "Makefile") or die "$0: Cannot open Makefile for writing\n";

Make::newMake($fh, \@drivers, {"code" => "PsimagLite"});

close($fh);

print "$0: Makefile has been written\n";