makemaker needed a -L to find libhammer.so

This commit is contained in:
Meredith L. Patterson 2013-12-06 09:24:19 +01:00
parent f8933dd5b1
commit 1e4863d71e
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ chdir(dirname($0));
WriteMakefile(
NAME => "hammer",
LIBS => ["-lhammer"],
LIBS => ["-L../../ -lhammer"],
OBJECT => 'hammer_wrap.o',
INC => '-I../..',
CCFLAGS => "$Config{ccflags} -DSWIG -DHAS_BOOL -std=gnu99",