diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-05-02 13:15:22 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-05-02 13:15:22 +0200 |
commit | 9fb710d4c89cb0a77d007551a208809f288068d1 (patch) | |
tree | a95ecf2c64cd559e1151eafafbef797ccd509082 /Makefile | |
parent | 54df7fae1b17ab59cb616caca17a7a6b986a251d (diff) | |
download | w3watch-9fb710d4c89cb0a77d007551a208809f288068d1.tar.gz w3watch-9fb710d4c89cb0a77d007551a208809f288068d1.tar.xz |
add Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
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 |