File: Makefile.in

package info (click to toggle)
nagios-plugin-check-multi 0.26-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,168 kB
  • sloc: perl: 2,296; makefile: 415; sh: 239
file content (33 lines) | stat: -rw-r--r-- 939 bytes parent folder | download | duplicates (7)
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
#---
#--- Makefile sample_config/feed_passive
#---
#--- $Id$
#---
prefix=@prefix@
HTMLDIR=@datarootdir@
CGIDIR=@sbindir@
CFGDIR=@config_dir@
INSTALL=@INSTALL@
INSTALL_OPTS=@INSTALL_OPTS@
CHMOD=@CHMOD@
PERL=@PERL@

all:
	$(CHMOD) 755 gencfg

clean:	
	-rm -f README gencfg feed_passive.cmd feed_passive.cfg service_definition.tpl addhosts.cfg addhosts.cfg.old

distclean: clean
	-rm -f Makefile

devclean: distclean

install-config: 
	$(PERL) gencfg 10
	$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)${CFGDIR}/feed_passive
	$(INSTALL) -m 644 $(INSTALL_OPTS) addhosts.cfg $(DESTDIR)${CFGDIR}/feed_passive
	$(INSTALL) -m 755 $(INSTALL_OPTS) gencfg $(DESTDIR)${CFGDIR}/feed_passive
	$(INSTALL) -m 644 $(INSTALL_OPTS) feed_passive.cmd $(DESTDIR)${CFGDIR}/feed_passive
	$(INSTALL) -m 644 $(INSTALL_OPTS) feed_passive.cfg $(DESTDIR)${CFGDIR}/feed_passive
	$(INSTALL) -m 644 $(INSTALL_OPTS) service_definition.tpl $(DESTDIR)${CFGDIR}/feed_passive