summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e9d3b76bd480229ff46320c3a2e87b901a22d1e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DESTDIR?=/usr/local
UPSTREAM=master
VERSION=$(shell git describe --tags $(UPSTREAM))

all:

clean:

install: check_load
	install -d "$(DESTDIR)/lib/nagios/plugins/"
	install $? "$(DESTDIR)/lib/nagios/plugins/"

dist:
	git archive "$(UPSTREAM)" | gzip > "../vserver-monitoring_$(VERSION).orig.tar.gz"