1998-10-10 Martin Baulig <martin@home-of-linux.org> * typemap: New file. * perl.awk: Make it work with the new format of `features.def'. * Makefile.PL.in: Added typemap. * Libgtop.pm (new): New function.
12 lines
397 B
Makefile
12 lines
397 B
Makefile
# -*-cperl-*-
|
|
use ExtUtils::MakeMaker;
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
# the contents of the Makefile that is written.
|
|
WriteMakefile('NAME' => 'Libgtop',
|
|
'VERSION_FROM' => '@srcdir@/Libgtop.pm',
|
|
'TYPEMAPS' => ['@srcdir@/typemap' ],
|
|
'LIBS' => ['@LIBGTOP_GUILE_LIBS@'],
|
|
'DEFINE' => '',
|
|
'INC' => '@LIBGTOP_GUILE_INCS@',
|
|
);
|