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
|
## Process this file with automake to produce Makefile.in
FIG = classhierarchy.fig repnaive.fig reppair.fig repreal.fig
info_TEXINFOS =
AM_MAKEINFOFLAGS = --no-split
AM_MAKEINFOHTMLFLAGS = --no-split
if CONFIG_TEX
if CONFIG_FIG2DEV
# Graphics file conversion
PNG = classhierarchy.png repnaive.png reppair.png repreal.png
EPS = classhierarchy.eps repnaive.eps reppair.eps repreal.eps
PDF = classhierarchy.pdf repnaive.pdf reppair.pdf repreal.pdf
SUFFIXES = .fig .png .eps
.fig.eps:
echo "Running ${FIG2DEV} -L eps -m 0.9 $< $@..."; \
${FIG2DEV} -L eps -m 0.9 $< $@;
.fig.pdf:
echo "Running ${FIG2DEV} -L pdf -m 0.9 $< $@..."; \
${FIG2DEV} -L pdf -m 0.9 $< $@
.fig.png:
@echo "Running ${FIG2DEV} -L png $< $@..."; \
${FIG2DEV} -L png $< $@
info_TEXINFOS += ginac.texi
ginac.pdf: $(PDF)
ginac.dvi: $(EPS)
ginac.html: $(PNG)
CLEANFILES = $(EPS) $(PDF) $(PNG)
## CONFIG_FIG2DEV
endif
## CONFIG_TEX
endif
EXTRA_DIST = $(FIG) CMakeLists.txt version.texi.cmake
|