view gtk/plugins/perl/common/Makefile.PL.in @ 14567:d6eae5115b31

[gaim-migrate @ 17291] This is a really huge commit for basically nothing, I decided that Gaim::Gtk should really be Gaim::GtkUI (which will line up better with any eventual Gaim::GntUI that might exist, etc.). So that's what this is, I think I got everything, it builds here at least. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Sun, 17 Sep 2006 05:35:46 +0000
parents de8aea7e9f07
children
line wrap: on
line source

use 5.006;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'          => 'Gaim::GtkUI',
    'VERSION_FROM'  => '@srcdir@/GtkUI.pm', # finds $VERSION
    ($] >= 5.005 ? ## Add these new keywords supported since 5.005
	('ABSTRACT_FROM' => '@srcdir@/GtkUI.pm', # finds $ABSTRACT
	'AUTHOR'        => 'Gaim <http://gaim.sourceforge.net/>') :  ()),
    'DEFINE'        => '@DEBUG_CFLAGS@',
    'INC'           => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libgaim -I@top_srcdir@/gtk @GTK_CFLAGS@',
#    'PREREQ_PM'     => { 'Gaim' => '@VERSION@'},
    # Do this because the MakeMaker Makefile is dumb, and on clean it moves
    # Makefile to the default setting for MAKEFILE_OLD which is Makefile.old
    # but this breaks running make clean more than once in a row.
    'MAKEFILE_OLD'  => "Makefile",
    'OBJECT'        => '$(O_FILES)',
    'TYPEMAPS'      => ["@top_srcdir@/libgaim/plugins/perl/common/typemap"],
#    'OPTIMIZE'      => '-g', # For debugging.
);