File: Makefile.in

package info (click to toggle)
nagios-plugin-check-multi 0.26-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,172 kB
  • sloc: perl: 2,296; makefile: 415; sh: 239
file content (26 lines) | stat: -rw-r--r-- 741 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
#---
#--- Makefile sample_config/cluster
#---
#--- $Id$
#---
prefix=@prefix@
HTMLDIR=@datarootdir@
CGIDIR=@sbindir@
CFGDIR=@config_dir@
INSTALL=@INSTALL@
INSTALL_OPTS=@INSTALL_OPTS@

clean:
	-rm -f download.cfg  download.cmd  download_my-plugin.cmd  download_sourceforge.cmd

distclean: clean
	-rm -f Makefile

devclean: distclean

install-config: 
	$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)${CFGDIR}/cluster
	$(INSTALL) -m 644 $(INSTALL_OPTS) download.cfg $(DESTDIR)${CFGDIR}/cluster
	$(INSTALL) -m 644 $(INSTALL_OPTS) download.cmd $(DESTDIR)${CFGDIR}/cluster
	$(INSTALL) -m 644 $(INSTALL_OPTS) download_my-plugin.cmd $(DESTDIR)${CFGDIR}/cluster
	$(INSTALL) -m 644 $(INSTALL_OPTS) download_sourceforge.cmd $(DESTDIR)${CFGDIR}/cluster