blob: bb7eed0d196bce59aa78f7575e1b4f551f096d3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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' => ['-ldb1 -lz'], # e.g., '-lm'
# 'OBJECT' => 'c.o librpm.a',
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '-Wall', # e.g., '-I/usr/include/other'
);
|