tazwok view Makefile @ rev 12

Added tag 1.2 for changeset a900f34b0d9f
author Christophe Lincoln <pankso@slitaz.org>
date Wed Dec 12 19:00:28 2007 +0100 (2007-12-12)
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