tazwok view Makefile @ rev 179

tazwok: add https support for wget
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 29 10:48:53 2010 +0200 (2010-10-29)
parents
children 919becf8fe71
line source
1 # Makefile for Tazwok.
2 #
3 PREFIX?=/usr
4 DOCDIR?=/usr/share/doc
6 all:
8 install:
9 @echo "Installing Tazwok into $(PREFIX)/bin..."
10 install -g root -o root -m 0777 tazwok $(PREFIX)/bin
11 install -g root -o root -m 0644 examples/tazwok.conf /etc
12 @echo "Installing documentation files..."
13 install -g root -o root -m 0755 -d $(DOCDIR)/tazwok
14 install -g root -o root -m 0644 doc/* $(DOCDIR)/tazwok
16 uninstall:
17 rm -f $(PREFIX)/bin/tazwok
18 rm -f /etc/tazwok.conf
19 rm -rf $(DOCDIR)/tazwok