1# Builds Hamlib-pl.mk and is invoked from Makefile
2
3use ExtUtils::MakeMaker;
4WriteMakefile(
5	'NAME'		=> 'Hamlib',
6	# Add these new keywords supported since 5.005
7	($] >= 5.005 ?
8	(
9	#ABSTRACT_FROM	=> 'Hamlib.pm', # retrieve abstract from module
10	AUTHOR		=> 'Stephane Fillod and the Hamlib Group') : ()),
11
12	# should use libtool somehow. Otherwise try -Wl,--rpath
13	#'LIBS'		=> ['-lhamlib'],
14	#'DEFINE'	=> '',
15	#'INC'		=> '',
16	#'OBJECT'	=> 'hamlibperl_wrap.o', # link all the C files too
17);
18