tazwok view Makefile @ rev 362

Fixed new-tree option to make new receipt in clean_wok instend of WOK.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Feb 24 08:50:48 2011 +0000 (2011-02-24)
parents 93cdf8506d92
children 6bc684d6b4f4
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/slitaz
12 install -g root -o root -m 0644 examples/config.site /etc
13 @echo "Installing documentation files..."
14 install -g root -o root -m 0755 -d $(DOCDIR)/tazwok
15 install -g root -o root -m 0644 doc/* $(DOCDIR)/tazwok
17 uninstall:
18 rm -f $(PREFIX)/bin/tazwok
19 rm -f /etc/slitaz/tazwok.conf
20 rm -f /etc/config.site
21 rm -rf $(DOCDIR)/tazwok