forked from sergiotarxz/Peertube-dl
12 lines
322 B
Makefile
12 lines
322 B
Makefile
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
WriteMakefile(
|
||
|
NAME => 'Peertube::DL::Javascript',
|
||
|
VERSION => '0.1',
|
||
|
LIBS => ['-lduktape'],
|
||
|
INC => '-Iduktape -I../src/include',
|
||
|
XS => { 'javascript.xs' => 'javascript.o' },
|
||
|
OBJECT => 'javascript.o ../src/javascript_builtins.o',
|
||
|
LDFLAGS => '-Wl-t',
|
||
|
);
|