File size: 291 Bytes
69fb171 |
1 2 3 4 5 6 7 8 9 10 11 |
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'CRFPP',
'CC' => 'c++',
'LD' => 'c++',
'INC' => '',
'LIBS' => '-lpthread -lcrfpp',
# 'VERSION' => '0.46',
'OBJECT' => 'CRFPP_wrap.o'
);
|