blob: 712f4e395070c5223f6315f58f12ec483f9bf467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'MAKEFILE' => 'Makefile_c',
'NAME' => 'c_rewritten',
'OPTIMIZE' => '-Os',
'VERSION_FROM' => 'c_rewritten.pm', # finds $VERSION
'LIBS' => '', # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
);
|