diff options
Diffstat (limited to 'perl-install/c/Makefile.PL')
| -rw-r--r-- | perl-install/c/Makefile.PL | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/perl-install/c/Makefile.PL b/perl-install/c/Makefile.PL new file mode 100644 index 000000000..405c02ecc --- /dev/null +++ b/perl-install/c/Makefile.PL @@ -0,0 +1,21 @@ +use MDK::Common; +use ExtUtils::MakeMaker; +use Config; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. + +my $lib = arch() =~ /x86_64/ ? 'lib64' : 'lib'; + +my $libs = '-lldetect'; + +my $pcmcia_probe_o = "/usr/$lib/drakx-installer-binaries/pcmcia_probe.o"; + +WriteMakefile( + 'NAME' => 'stuff', + 'OPTIMIZE' => '-Os', + 'MAKEFILE' => 'Makefile_c', + 'OBJECT' => "stuff.o " . (-e $pcmcia_probe_o && " $pcmcia_probe_o"), + 'VERSION_FROM' => 'stuff.pm', # finds $VERSION + 'LIBS' => [$libs], # e.g., '-lm' + 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' +); |
