#*********************************************************************#
#                                                                     #
#                             Active-DVI                              #
#                                                                     #
#                   Projet Cristal, INRIA Rocquencourt                #
#                                                                     #
#  Copyright 2003 Institut National de Recherche en Informatique et   #
#  en Automatique.  All rights reserved.  This file is distributed    #
#  under the terms of the GNU Lesser General Public License.          #
#                                                                     #
#  Jun Furuse, Didier Rmy and Pierre Weis.                           #
#  Contributions by Roberto Di Cosmo, Didier Le Botlan,               #
#  Xavier Leroy, and Alan Schmitt.                                    #
#                                                                     #
# Pierre Weis                                                         #
#                                                                     #
#*********************************************************************#

# The Makefile for the slitex caml sub-directory example.

# $Id: Makefile,v 1.6 2010/03/11 22:25:03 remy Exp $

# To view the demos, use ../../../advi.opt file.dvi

LATEX=latex

OSTYLES=../../../tex

.SUFFIXES: .tex

all:: talk.dvi

show:: talk.dvi
	advi talk.dvi

clean::
	/bin/rm -f *.z[io] *.aux *.dvi talk.ps *.log *~ *.txt spelling

scratch: clean
	/bin/rm -f *.bbl

talk.dvi: talk.tex slides.tex
	@ TEXINPUTS=$(OSTYLES):$$TEXINPUTS; export TEXINPUTS; latex talk.tex

ps:
	dvips -o talk.ps -t landscape talk.dvi
