check_oracle_health: update to 1.9
[omd.git] / packages / check_logfiles / Makefile
blobae954dfa301d78eb15885cfdf01985ef47ff724c
1 include ../../Makefile.omd
3 NAME = check_logfiles
4 VERSION = 3.5.2
5 DIR = $(NAME)-$(VERSION)
7 .PHONY: skel
9 # Configure options for Nagios. Since we want to compile
10 # as non-root, we use our own user and group for compiling.
11 # All files will be packaged as user 'root' later anyway.
12 CONFIGUREOPTS = ""
14 build:
15 tar xzf $(DIR).tar.gz
16 cd $(DIR) ; ./configure $(CONFIGUREOPTS)
17 $(MAKE) -C $(DIR)
19 install:
20 [ -d $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins ] || mkdir -p $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins
21 install -m 755 $(DIR)/plugins-scripts/check_logfiles $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins/
23 skel:
25 clean:
26 rm -rf $(DIR)