forked from Imagelibrary/rtems
PR 1793/doc * .cvsignore, Makefile.am, README, configure.ac, index.html.in, main.am, project.am, ada_user/.cvsignore, ada_user/ada_user.texi, ada_user/example.texi, bsp_howto/.cvsignore, bsp_howto/bsp_howto.texi, cpu_supplement/.cvsignore, cpu_supplement/cpu_supplement.texi, cpu_supplement/preface.texi, develenv/.cvsignore, develenv/develenv.texi, develenv/intro.texi, filesystem/.cvsignore, filesystem/filesystem.texi, filesystem/preface.texi, networking/.cvsignore, networking/networking.texi, networking/preface.texi, porting/.cvsignore, porting/porting.texi, porting/preface.texi, posix1003.1/.cvsignore, posix1003.1/posix1003_1.texi, posix_users/.cvsignore, posix_users/posix_users.texi, posix_users/preface.texi, shell/.cvsignore, shell/preface.texi, shell/shell.texi, started/.cvsignore, started/started.texi, user/.cvsignore, user/c_user.texi, user/dirstat.texi, user/example.texi, user/glossary.texi, user/preface.texi: Convert from texi2www to texi2html. * texi2html_init.in: New file. * rtems_footer.html.in, rtems_header.html.in: Removed.
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ACLOCAL_AMFLAGS = -I ../aclocal
|
|
|
|
# NOTE: The order of the directories is essential.
|
|
# + tools, common and images are shared across many documents
|
|
|
|
SUBDIRS = tools started user bsp_howto porting develenv posix_users \
|
|
posix1003.1 filesystem networking ada_user \
|
|
new_chapters relnotes cpu_supplement shell
|
|
|
|
if USE_HTML
|
|
html_DATA = index.html HELP.html
|
|
endif
|
|
|
|
EXTRA_DIST = HELP.html
|
|
|
|
EXTRA_DIST += common/cpright.texi common/setup.texi \
|
|
common/treedef.tex common/rtems.texi.in
|
|
|
|
if USE_HTML
|
|
html_imagesdir = $(htmldir)/images
|
|
endif
|
|
|
|
HTML_IMAGES = images/dir-arrow.gif images/dvi.gif images/missing-arrow.gif \
|
|
images/next-arrow.gif images/oaronly.jpg images/pdf.gif images/pdf1.gif \
|
|
images/rtems_logo.jpg images/prev-arrow.gif images/ps.gif \
|
|
images/up-arrow.gif
|
|
|
|
if USE_HTML
|
|
html_images_DATA = $(HTML_IMAGES)
|
|
endif
|
|
|
|
EXTRA_DIST += $(HTML_IMAGES)
|
|
|
|
CLEANFILES = common/rtems.texi
|
|
DISTCLEANFILES = common/rtems.sed
|
|
|
|
# HACK: This should not be here, but it makes "make distcheck" work.
|
|
EXTRA_DIST += ../scripts/setup.def ../COPYING
|