tazwok view Makefile @ rev 34

Multiple desktop file can go in stuff/applications
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 07 14:46:33 2008 +0100 (2008-02-07)
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