1# Emacs should use -*- Makefile -*- mode.
2
3# this is usually overridden
4TARGET_TO_MAKE = $(shell basename `pwd`)
5
6ifndef SRCDIR
7  SRCDIR = .
8endif
9SRCTOPDIR = $(SRCDIR)/$(TOPDIR)
10
11host = @host@
12host_cpu = @host_cpu@
13host_vendor = @host_vendor@
14host_os = @host_os@
15
16target = @target@
17target_cpu = @target_cpu@
18target_vendor = @target_vendor@
19target_os = @target_os@
20
21LIBINT_VERSION = @LIBINT_VERSION@
22LIBINT_SO_VERSION = @LIBINT_SO_VERSION@
23BUILDID = @LIBINT_BUILDID@
24LIBINT_MAJOR_VERSION = @LIBINT_MAJOR_VERSION@
25
26DOXYGEN = @DOXYGEN@
27PDFLATEX  = @PDFLATEX@
28PSLATEX  = @PSLATEX@
29DVIPS  = @DVIPS@
30LATEX  = @LATEX@
31LATEX2HTML  = @LATEX2HTML@
32BIBTEX = @BIBTEX@
33# The document suffix (pdf or ps)
34# Preferentially make pdf manuals, only revert to ps if necessary
35ifdef BIBTEX
36 ifdef PSLATEX
37  DOCSUF = ps
38  LATEX = $(PSLATEX)
39 endif
40 ifdef PDFLATEX
41  DOCSUF = pdf
42  LATEX = $(PDFLATEX)
43 endif
44endif
45TEXINPUTS = :$(SRCDIR):$(SRCDIR)/..:
46BIBINPUTS = $(TEXINPUTS)
47TEXGARBAGE = *.bbl *.blg *.aux *.log *.out
48
49INSTALL = @INSTALL@
50INSTALLDIROPT = -d -m 0755
51INSTALLDOCOPT = -m 0644
52
53prefix=@prefix@
54exec_prefix=@exec_prefix@
55docdir=$(prefix)/doc
56includedir=@libintincludedir@
57
58