# $Id: Makefile,v 1.6 1998/09/05 14:30:32 alexis Exp $ SUPPORT_DIR = ../support include ../Makefile.defs COMPONENTS = examples FILES = \ images/separator.jpg \ index.html \ linux-sa/news/index.html \ linux-sa/news/list-of-newsgroups.html \ linux-sa/news/subscribing.html \ linux-sa/news/unsubscribing.html \ linux-sa/index.html \ linux-sa/sw-mgmt/archiving-software.html \ linux-sa/sw-mgmt/index.html \ linux-sa/sw-mgmt/installing-debs.html \ user-tasks/index.html \ hardware/index.html \ meta/index.html \ meta/node.html \ meta/leaf.html \ meta/document-conventions.html \ meta/last-node.html \ meta/design.html \ windows98/index.html \ windows98/misc/index.html \ windows98/misc/desktop-themes.html \ windows98/misc/exercising-sg.html compile: $(FILES) clean: install: compile $(INSTALL) -o root -g root -m 555 -d \ $(PRGDOCDIR) umask 022; tar cf - $(FILES) | \ ( cd $(PRGDOCDIR) && tar xvf - ) uninstall: -cd $(PRGDOCDIR) && rm -f $(FILES) -cd $(PRGDOCDIR) && { echo $(FILES) | xargs -n 1 echo | xargs -n 1 dirname | \ egrep -v '^\.$$' | sort -ur | xargs rmdir; } -rmdir $(PRGDOCDIR)