Fixing cmake dependencies and "make {install,clean}"

Also includes a bunch of cleanup.
This commit is contained in:
Robin Sommer 2013-05-15 20:22:51 -07:00
parent 10dc8b9279
commit 8752870967
86 changed files with 130 additions and 116 deletions

View file

@ -3,7 +3,7 @@ include(BroPlugin)
include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
bro_plugin_begin(Modbus)
bro_plugin_begin(Bro Modbus)
bro_plugin_cc(Modbus.cc Plugin.cc)
bro_plugin_bif(events.bif)
bro_plugin_pac(modbus.pac modbus-analyzer.pac modbus-protocol.pac)

View file

@ -3,7 +3,7 @@
#include "Modbus.h"
BRO_PLUGIN_BEGIN(Modbus)
BRO_PLUGIN_BEGIN(Bro, Modbus)
BRO_PLUGIN_DESCRIPTION("Modbus analyzer");
BRO_PLUGIN_ANALYZER("MODBUS", modbus::ModbusTCP_Analyzer);
BRO_PLUGIN_BIF_FILE(events);