File: Makefile.am

package info (click to toggle)
ginac 1.5.8-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,628 kB
  • ctags: 4,936
  • sloc: cpp: 44,703; sh: 11,126; perl: 1,157; yacc: 763; makefile: 414; lex: 200; sed: 32
file content (41 lines) | stat: -rw-r--r-- 916 bytes parent folder | download | duplicates (3)
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
## Process this file with automake to produce Makefile.in

FIG = classhierarchy.fig repnaive.fig reppair.fig repreal.fig
info_TEXINFOS =
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)