The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

# Use this as a template for the Makefile.PL for
# any external PDL module.

use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

@pack = (["Complex.pd",Complex, PDL::LinearAlgebra::Complex]);

%hash = pdlpp_stdargs_int(@::pack);
# $hash{'OPTIMIZE'}  = '-g'; # If you want to debug, uncomment this.
$hash{LIBS}[0] .= $^O =~ /MSWin/ ? '' : '-L/usr/lib/atlas -llapack -lf77blas -lcblas -latlas -lg2c ';

$hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib  netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib  version.lib odbc32.lib odbccp32.lib msvcrt.lib  ../lapack/lapack.lib' if $^O =~ /MSWin/;
WriteMakefile(
	%hash,
	VERSION_FROM => "",
	VERSION => 0.03,
);

# Add genpp rule
# add other makefile additions as required (see also ExtUtils::MakeMaker)
sub MY::postamble {
	pdlpp_postamble_int(@::pack);
}