tazwok view Makefile @ rev 227

Fixed the nounpack option to unpack to recompress source. I just wanted the tmp_src folder to be removed after .tar.lzma file was made. Otherwise the wok would get full of source code again.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 04 19:18:26 2011 +0000 (2011-02-04)
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