File: Makefile.in

package info (click to toggle)
nagios-plugin-check-multi 0.26-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,172 kB
  • sloc: perl: 2,296; makefile: 415; sh: 239
file content (28 lines) | stat: -rw-r--r-- 431 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
#---
#--- Makefile plugins
#---
#--- $Id$
#---
prefix=@prefix@
CHMOD=@CHMOD@
HTMLDIR=@datarootdir@
INSTALL=@INSTALL@
INSTALL_OPTS=@INSTALL_OPTS@
LIBEXECDIR=@libexecdir@

all:
	$(CHMOD) 755 check_multi


clean:
	-rm -f check_multi

distclean: clean
	-rm -f Makefile

devclean: distclean

install: 
	$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR)
	$(INSTALL) -m 755 $(INSTALL_OPTS) check_multi $(DESTDIR)$(LIBEXECDIR)