# 
# Makefile for skami documentation
#
# $Id: Makefile,v 1.5 2003/09/20 17:54:46 stappers-guest Exp $
# $Source: /cvsroot/skami/htdocs/Makefile,v $ at cvs.alioth.debian.org
#

all: html/index.html

html/index.html:
	( cd src ; make $@ )

dist:
	rm -rf htdocs # to make sure to start clean
	mkdir -p htdocs/src
	cp Makefile README htdocs
	cp src/README src/Makefile src/*.xml htdocs/src
	tar czf htdocs.tar.gz htdocs # makes the tarball
	rm -rf htdocs # clean up

clean:
	rm -rf html
	( cd src ; make $@ )

install: html
	scp html/*.html stappers-guest@alioth.debian.org:/var/lib/gforge/chroot/home/groups/skami/htdocs/
	@true # to avoid an "Error 1" exit from Make

# end of Makefile
