mirror of https://github.com/ecmwf/eccodes.git
24 lines
1.0 KiB
Makefile
24 lines
1.0 KiB
Makefile
|
use 5.006001;
|
||
|
use ExtUtils::MakeMaker;
|
||
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
||
|
# the contents of the Makefile that is written.
|
||
|
WriteMakefile(
|
||
|
NAME => 'GRIB::API',
|
||
|
# Module version
|
||
|
'VERSION' => '@PACKAGE_VERSION@',
|
||
|
|
||
|
# Preprocessor defines
|
||
|
'DEFINE' => '@DEFS@', # e.g., '-DHAVE_SOMETHING'
|
||
|
|
||
|
VERSION_FROM => 'lib/GRIB/API.pm', # finds $VERSION
|
||
|
PREREQ_PM => {}, # e.g., Module::Name => 1.1
|
||
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
||
|
(ABSTRACT_FROM => 'lib/GRIB/API.pm', # retrieve abstract from module
|
||
|
AUTHOR => 'Baudouin Raoult <mab@suse.de>') : ()),
|
||
|
LIBS => ['-L../../src -lgrib_api -lm @LIB_JP2@ @LIB_PNG@'], # e.g., '-lm'
|
||
|
INC => '-I@GRIB_API_INC@', # e.g., '-I. -I/usr/include/other'
|
||
|
# Un-comment this if you add C files to link with later:
|
||
|
# OBJECT => '$(O_FILES)', # link all the C files too
|
||
|
depend => { "API.o" => "../../src/libgrib_api.a" }
|
||
|
);
|