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 52 53 54 55 56 57
|
# Emacs should use -*- Makefile -*- mode.
# this is usually overridden
TARGET_TO_MAKE = $(shell basename `pwd`)
ifndef SRCDIR
SRCDIR = .
endif
SRCTOPDIR = $(SRCDIR)/$(TOPDIR)
host = @host@
host_cpu = @host_cpu@
host_vendor = @host_vendor@
host_os = @host_os@
target = @target@
target_cpu = @target_cpu@
target_vendor = @target_vendor@
target_os = @target_os@
LIBINT_VERSION = @LIBINT_VERSION@
LIBINT_SO_VERSION = @LIBINT_SO_VERSION@
BUILDID = @LIBINT_BUILDID@
LIBINT_MAJOR_VERSION = @LIBINT_MAJOR_VERSION@
DOXYGEN = @DOXYGEN@
PDFLATEX = @PDFLATEX@
PSLATEX = @PSLATEX@
DVIPS = @DVIPS@
LATEX = @LATEX@
LATEX2HTML = @LATEX2HTML@
BIBTEX = @BIBTEX@
# The document suffix (pdf or ps)
# Preferentially make pdf manuals, only revert to ps if necessary
ifdef BIBTEX
ifdef PSLATEX
DOCSUF = ps
LATEX = $(PSLATEX)
endif
ifdef PDFLATEX
DOCSUF = pdf
LATEX = $(PDFLATEX)
endif
endif
TEXINPUTS = :$(SRCDIR):$(SRCDIR)/..:
BIBINPUTS = $(TEXINPUTS)
TEXGARBAGE = *.bbl *.blg *.aux *.log *.out
INSTALL = @INSTALL@
INSTALLDIROPT = -d -m 0755
INSTALLDOCOPT = -m 0644
prefix=@prefix@
exec_prefix=@exec_prefix@
docdir=$(prefix)/doc
includedir=@libintincludedir@
|