zbus_module 0.1.0

Zabbix loadable module for accessing data on ZBUS telemetry bus
Documentation
1
2
3
4
5
6
7
8
9
all: debug

debug: zbus.c
	cargo build
	gcc -fPIC -shared -o zbus_module.so zbus.c -I. -I../zabbix/include -I../zabbix/include/common -L./target/debug -lzbus_module
	find ./target/debug -maxdepth 1 -name "libzbus*.so" -o -name "libzbus*.dylib" -exec cp {} . \;

clean:
	rm -f zbus_module.so libzbus_module.*