# Name: Makefile
# Project: Sharity
# Author: Christian Starkjohann <cs@obdev.at>
# Creation Date: 1999-05-30
# Tabsize: 4
# Copyright: (c) 1999 by Christian Starkjohann, all rights reserved.
#     For details of the license see the file doc/License.txt.
# This Revision: $Id: Makefile,v 1.3 2002/04/05 17:53:49 cs Exp $

include $(ROOT)Makefile.config

all: $(ROOT)../install/manual

manual:
	(cd manual-src; ./make.sh)

$(ROOT)../install/manual: manual
	tar cf - manual | (cd "$(ROOT)../install/"; tar xf -)

clean:
	rm -rf "$(ROOT)../install/manual"
