mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
* project.am: Remove $(PROJECT).info* from CLEANFILES (Doesn't work with automake-1.7f/1.8 anymore).
87 lines
2.0 KiB
Plaintext
87 lines
2.0 KiB
Plaintext
## $Id$
|
|
|
|
# HACK: makeinfo is locale sensitive
|
|
LANG=C
|
|
|
|
SUFFIXES = .t
|
|
|
|
MAINTAINERCLEANFILES =
|
|
CLEANFILES =
|
|
MOSTLYCLEANFILES =
|
|
CLEANFILES += $(GENERATED_FILES)
|
|
|
|
AM_MAKEINFOFLAGS = -I $(top_builddir) -I $(top_srcdir)
|
|
TEXI2DVI = @TEXI2DVI@ -I $(top_builddir) -I $(top_srcdir)
|
|
TEXI2PDF = @TEXI2PDF@ -I $(top_builddir) -I $(top_srcdir)
|
|
|
|
# HACK: Force generation of version.texi
|
|
version.texi: stamp-vti
|
|
|
|
# Without $(srcdir) in TEXINPUTS, dvips doesn't find the *.eps
|
|
# we distribute in $(srcdir)
|
|
.dvi.ps:
|
|
TEXINPUTS="$(srcdir)${PATH_SEPARATOR}$$TEXINPUTS" \
|
|
$(DVIPS) -o $@ $<
|
|
|
|
## DVI support
|
|
dvidir = $(pkgdocdir)/dvi
|
|
|
|
## PS support
|
|
psdir = $(pkgdocdir)/ps
|
|
|
|
## PDF support
|
|
pdfdir = $(pkgdocdir)/pdf
|
|
|
|
if EPSTOPDF
|
|
.eps.pdf:
|
|
$(EPSTOPDF) $< --outfile=$@
|
|
endif
|
|
|
|
$(PROJECT).pdf: $(PROJECT).texi $($(PROJECT)_TEXINFOS) $(PDF_IMAGES)
|
|
CLEANFILES += $(PROJECT).pdf
|
|
|
|
MOSTLYCLEANFILES += $(PDF_IMAGES)
|
|
|
|
## HTML
|
|
SUFFIXES += .html
|
|
|
|
rtems_header.html: $(top_srcdir)/rtems_header.html.in version.texi
|
|
@sed -e s%\.\./images/%$(top_builddir)/images/%g \
|
|
-e s%\@VERSION\@%@VERSION@%g \
|
|
< $< > $@
|
|
rtems_footer.html: $(top_srcdir)/rtems_footer.html.in version.texi
|
|
@sed -e s%\.\./images/%$(top_builddir)/%g \
|
|
-e s%\@VERSION\@%@VERSION@%g \
|
|
< $< > $@
|
|
|
|
index.html $(PROJECT)*.html: $(PROJECT).texi $($(PROJECT)_TEXINFOS) \
|
|
rtems_header.html rtems_footer.html
|
|
$(TEXI2WWW) $(TEXI2WWW_ARGS) -base $(PROJECT) $<
|
|
|
|
MOSTLYCLEANFILES += index.html $(PROJECT)*.html rtems_header.html \
|
|
rtems_footer.html
|
|
|
|
## Common installation points
|
|
if USE_HTML
|
|
html_project_DATA = index.html $(PROJECT)*.html
|
|
endif
|
|
|
|
if USE_DVI
|
|
dvi_DATA = $(PROJECT).dvi
|
|
endif # USE_DVI
|
|
|
|
if USE_PS
|
|
ps_DATA = $(PROJECT).ps
|
|
endif # USE_PS
|
|
|
|
if USE_PDF
|
|
pdf_DATA = $(PROJECT).pdf
|
|
endif
|
|
|
|
COMMON_FILES = $(top_srcdir)/common/setup.texi
|
|
COMMON_FILES += $(top_builddir)/common/rtems.texi
|
|
|
|
$(top_builddir)/common/rtems.texi: $(top_srcdir)/common/rtems.texi.in $(top_builddir)/common/rtems.sed
|
|
sed -f $(top_builddir)/common/rtems.sed \
|
|
$(top_srcdir)/common/rtems.texi.in > $(top_builddir)/common/rtems.texi
|