#######################################################################
#
# Makefile for kde_faq
#
# Copyright (C) 1997 Thor Sigvaldason
#
# please send any contributions to the faq to thor@netcom.ca
#
#
#	The following targets are supported
#	(ie. type `make x' where x is one of):
#
#		html	Make an html version of the FAQ
#		txt	Make an ascii text version of the FAQ
#		dvi	Make a (tex) .dvi version of the FAQ
#		ps	Make a PostScript version of the FAQ
#
#		all	Make all of the above (default)
#		clean	Delete everything except the sgml source
#
#######################################################################
#
#
#
#

all:		html txt ps dvi

html:		kde_faq.html

txt:		kde_faq.txt

ps:		kde_faq.ps

dvi:		kde_faq.dvi

kde_faq.html:	kde_faq.sgml
		sgml2html -img kde_faq.sgml

kde_faq.txt:	kde_faq.sgml
		sgml2txt -f kde_faq.sgml

kde_faq.ps:	kde_faq.sgml
		sgml2latex -p kde_faq.sgml

kde_faq.dvi:	kde_faq.sgml
		sgml2latex -d kde_faq.sgml

clean:		
		rm -f *~
		rm -f kde_fa*.html
		rm -f kde_faq.txt
		rm -f kde_faq.dvi
		rm -f kde_faq.ps

