#*********************************************************************#
#                                                                     #
#                           HTMLC                                     #
#                                                                     #
#            Pierre Weis, projet Cristal, INRIA Rocquencourt          #
#                                                                     #
#  Copyright 2003 Institut National de Recherche en Informatique et   #
#  en Automatique.  Distributed only by permission.                   #
#                                                                     #
#*********************************************************************#

#(* $Id: Makefile,v 1.1 2003/03/03 10:39:14 weis Exp $ *)

HTMLC=../htmlc
HTMLCFLAGS=-I ../../doc_src/Includes/ -env env0

SOURCES=example-eng.html example-fra.html included-eng.html included-fra.html
TARGETS=$(SOURCES:.html=.htm)

all : $(TARGETS)

clean:
	/bin/rm -f *.htm *~

.SUFFIXES:
.SUFFIXES: .shtml .html .htm

.shtml.htm:
	$(HTMLC) $(HTMLCFLAGS) -s $<

.html.htm:
	$(HTMLC) $(HTMLCFLAGS) -c $<
