From 9fb710d4c89cb0a77d007551a208809f288068d1 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 2 May 2010 13:15:22 +0200 Subject: add Makefile --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..89240e2 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 -- cgit v1.2.3-24-g4f1b