use ExtUtils::MakeMaker; my $libs = `../idzebra-config --libs`; my $flags = `../idzebra-config --cflags`; WriteMakefile( 'NAME' => 'IDZebra', 'OBJECT' => 'IDZebra_wrap.o zebra_perl.o' , 'INC' => $flags, 'LIBS' => [$libs], 'OPTIMIZE' => '-g', # 'PREREQ_FATAL' => 1, 'PREREQ_PM' => { 'Scalar::Util' => '1.0', 'Test::More' => '0.40', } ); sub MY::postamble { 'IDZebra_wrap.c: IDZebra.i ./doswig' ; }