1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#*********************************************************************#
# #
# Active-DVI #
# #
# Projet Cristal, INRIA Rocquencourt #
# #
# Copyright 2004 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. #
# #
# Based on Mldvi by Alexandre Miquel. #
#*********************************************************************#
# $Id Exp $
# include ../Makefile.config
LATEX=latex
# binaries
ADVI =../advi
# flags
TEX_ENV = TEXINPUTS=.:../tex:$$TEXINPUTS
ADVI_ENV= TEXPSHEADERS=../tex:
# sources
TEXFILES= Zeitoun.tex
DVIFILES= $(TEXFILES:%.tex=%.dvi)
all: $(DVIFILES)
$(DVIFILES): bar.eps ../tex/advi.sty ../tex/advi-annot.sty
.SUFFIXES: .tex .sty .dvi .ps .eps .advi
.dvi.advi:
$(ADVI_ENV) $(ADVI) $<
.tex.dvi:
$(TEX_ENV) $(LATEX) $<
bar.eps: ../tex/bar.eps
cp -p ../tex/bar.eps .
clean::
$(RM) a.out *.toc *.aux *.log *.dvi *~
$(RM) .advi/*
|