GPIB
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
exit(1);
}
print "Using interfaces: @interfaces\n";
print "Using instrument drivers: @drivers\n\n";
WriteMakefile(
'NAME' => 'GPIB',
'DIR' => [@interfaces, @drivers],
'VERSION_FROM' => 'GPIB.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
hp33120a/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::hp33120a',
'VERSION_FROM' => 'hp33120a.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
hp3585a/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::hp3585a',
'VERSION_FROM' => 'hp3585a.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
hp59306a/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::hp59306a',
'VERSION_FROM' => 'hp59306a.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
hpe3631a/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::hpe3631a',
'VERSION_FROM' => 'hpe3631a.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
hpserial/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::hpserial',
'VERSION_FROM' => 'hpserial.pm', # finds $VERSION
'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
llp/Makefile.PL view on Meta::CPAN
$incpath = "/usr/local/llp/include";
$libfile = "gpib";
$libpath = "/usr/local/llp/lib";
%params = (
'NAME' => 'GPIB::llp',
'VERSION_FROM' => 'llp.pm',
'LIBS' => ["-L$libpath -l$libfile -lfl"],
'DEFINE' => '-DUNIX',
'INC' => "-I$incpath",
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
# Look for include file and library
$err = 0;
unless (-s "$incpath/$incfile") {
print "Cannot find file $incpath/$incfile for GPIB, module GPIB::llp.\n";
$err = 1;
ni/Makefile.PL view on Meta::CPAN
$incpath = "/usr/local/gpib/include";
$libfile = "gpib";
$libpath = "/usr/local/gpib/lib";
%params = (
'NAME' => 'GPIB::ni',
'VERSION_FROM' => 'ni.pm',
'LIBS' => ["-L$libpath -l$libfile"],
'DEFINE' => '-DUNIX',
'INC' => "-I$incpath",
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
# Look for include file and library
$err = 0;
unless (-s "$incpath/$incfile") {
print "Cannot find file $incpath/$incfile for GPIB, module GPIB::ni.\n";
$err = 1;
ni/Makefile.PL view on Meta::CPAN
$libfile = "gpib-32.obj";
$incpath = 'C:\Program Files\National Instruments\NI-488.2\Languages\Microsoft C'; # geez
$libpath = $incpath;
%params = (
'NAME' => 'GPIB::ni',
'VERSION_FROM' => 'ni.pm',
'LIBS' => [''],
'OBJECT' => "ni.obj \"$libpath\\$libfile\"",
'INC' => "-I\"$incpath\"",
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
# Look for include file and library
$err = 0;
unless (-s "$incpath/$incfile") {
print "Cannot find file $incpath\\$incfile for GPIB, module GPIB::ni.\n";
$err = 1;
rmt/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'GPIB::rmt',
'VERSION_FROM' => 'rmt.pm', # finds $VERSION
($] ge '5.005') ? (
'AUTHOR' => 'Jeff Mock (jeff@mock.com)',
'ABSTRACT' => 'GPIB device control',
) : (),
);
( run in 3.949 seconds using v1.01-cache-2.11-cpan-a49fcb8fa48 )