hammer/src/bindings/perl/Makefile.PL

16 lines
292 B
Perl
Raw Normal View History

use ExtUtils::MakeMaker;
use File::Basename;
use Config;
# Scons hack...
chdir(dirname($0));
WriteMakefile(
NAME => "hammer",
LIBS => ["-L../../ -lhammer"],
OBJECT => 'hammer_wrap.o',
INC => '-I../..',
2013-12-06 05:59:07 +01:00
CCFLAGS => "$Config{ccflags} -DSWIG -DHAS_BOOL -std=gnu99",
);