1
0
mirror of https://github.com/librenms/librenms-agent.git synced 2024-05-09 09:54:52 +00:00

14 lines
436 B
Makefile
Raw Normal View History

2015-08-17 15:12:12 +02:00
PREFIX=${CURDIR}/debian/librenms-agent
install:
mkdir -p $(PREFIX)/usr/lib/check_mk_agent/plugins
mkdir -p $(PREFIX)/usr/lib/check_mk_agent/local
cp -r agent-local/* $(PREFIX)/usr/lib/check_mk_agent/plugins/
mkdir -p $(PREFIX)/usr/bin
install -m 0750 check_mk_agent $(PREFIX)/usr/bin/check_mk_agent
mkdir -p $(PREFIX)/etc/xinetd.d
install -m 0644 check_mk_xinetd $(PREFIX)/etc/xinetd.d/check_mk
2015-08-17 15:12:12 +02:00
clean:
rm -rf $(CURDIR)/build