1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'NWatch',
'PM' =>
{
'RBPH.pm' => '$(INST_LIBDIR)/NWatch/RBPH.pm',
'IPPacketHandler.pm' => '$(INST_LIBDIR)/NWatch/IPPacketHandler.pm',
'IPStatefulPH.pm' => '$(INST_LIBDIR)/NWatch/IPStatefulPH.pm',
'EthernetPacket.pm' => '$(INST_LIBDIR)/NWatch/EthernetPacket.pm',
'IPv4Packet.pm' => '$(INST_LIBDIR)/NWatch/IPv4Packet.pm',
'Packet.pm' => '$(INST_LIBDIR)/NWatch/Packet.pm',
'PacketHandler.pm' => '$(INST_LIBDIR)/NWatch/PacketHandler.pm',
'TCPPacket.pm' => '$(INST_LIBDIR)/NWatch/TCPPacket.pm',
'UDPPacket.pm ' => '$(INST_LIBDIR)/NWatch/UDPPacket.pm',
'StateMachine.pm' => '$(INST_LIBDIR)/NWatch/StateMachine.pm',
},
EXE_FILES => [ "nwatch" ],
# MAN3PODS => { "NDiff_Quickstart.pod" => '$(INST_MAN3DIR)/NDiff_Quickstart.3' },
NEEDS_LINKING => 0,
VERSION => '0.03',
($] ge '5.005')
? (
AUTHOR => 'James Levine (jdl@vinecorp.com)',
# ABSTRACT
# => 'Tools for storing/retrieving results of nmap scans, and generating deltas between them.',
)
: (),
);
# 'dist' => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
# 'VERSION_FROM' => '', # finds $VERSION
|