blob: f9d2309f8ac94db4c04b15cc754b5cc8882328c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'c',
'VERSION_FROM' => 'c.pm', # finds $VERSION
'LIBS' => ['-lrpm -ldb1 -lz -L/usr/X11R6/lib -lX11 -lgdk'], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '-Wall `gtk-config --cflags`', # e.g., '-I/usr/include/other'
);
|