File: Makefile

package info (click to toggle)
nagios-plugins-contrib 35.20210511
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,644 kB
  • sloc: perl: 34,849; sh: 10,037; python: 2,672; php: 593; lex: 582; makefile: 462; ruby: 149; awk: 81
file content (16 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

DM_DIR=/usr/share/icinga/plugins/eventhandlers/distributed-monitoring/
MULTI_DIR=/etc/check_multi

all:
	#nothing to do.

install:
	install -d $(DESTDIR)$(MULTI_DIR)
	install -m 644 -o root -g root check_apt.cmd $(DESTDIR)$(MULTI_DIR)
	install -d $(DESTDIR)$(DM_DIR)
	install -m 755 -o root -g root send_nsca_host_or_service_check_result $(DESTDIR)$(DM_DIR)

clean:
	# nothing to do.