summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 89240e2d5f429afbc5b180824877c4144e8619e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
V=1.0.0

all:

install:
	install -D -m755 w3watch $(DESTDIR)/usr/bin/w3watch
	install -D -m644 config.sample $(DESTDIR)/usr/share/doc/w3watch/config.sample

uninstall:
	rm $(DESTDIR)/usr/bin/w3watch
	rm $(DESTDIR)/usr/share/doc/w3watch/config.sample

dist:
	git archive --format=tar --prefix=w3watch-$(V)/ $(V) | gzip -9 > w3watch-$(V).tar.gz