forked from Imagelibrary/rtems
Patch rtems-rc-4.5.0-21.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
which splits the current monolithic specs files into a sequence of
subparts. These can be concatenated togather to make a the whole .spec
file. This cleans up the maintenance problem of having "all languages"
and a "C/C++ only" gccnewlib spec files. Plus it should make it easier
to produce variants like the gdb-m68k-bdm which require special hackery. :)
Ralf's comments:
It addresses the way *.spec.in get composed inside of the source
tree.
Changes:
* Each spec.in is broken into several files (*.add), one *.add file
per sub-package.
* Each Makefile.am composes spec.ins from the *.add files
* Removal of redundant automake support files.
* Default value for BuildRoot changed to /tmp/<spec-file-name>
* %clean stage added to *specs
Advantages (IMHO).
* The *.add files are easier to adminstrate and more flexible in
comparison to the former *.specs.ins.
* gccnewlib_c_only.spec.in now is composed from the same sources as
gccnewlib.spec.in (less errors)
* If using the default BuildRoot --clean now deletes all files that
were generated while building.
Notes:
* rtems.spec.in has not yet been adapted to the scheme used for the
other *spec.ins
* Except for cosmetical changes the internals of the *.spec files
should not have changed.
To Apply:
cvs rm -f scripts/binutils/binutils.spec.in
cvs rm -f scripts/gccnewlib/gccnewlib.spec.in
cvs rm -f scripts/gccnewlib/gccnewlib_c_only.spec.in
cvs rm -f scripts/gdb/gdb.spec.in
cvs rm -f scripts/config.sub
cvs rm -f scripts/config.guess
cvs rm -f scripts/install-sh
cvs rm -f scripts/mkinstalldirs
cvs rm -f scripts/missing
patch -p1 < rtems-rc-4.5.0-21.diff
cvs add scripts/*/*.add
cvs add scripts/*/README
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ GENERATED_FILES = basic.texi tools.texi concepts.texi build45.texi bsp.texi \
|
|||||||
debug.texi freesw.texi embeddedinfo.texi hwdebugaids.texi projects.texi \
|
debug.texi freesw.texi embeddedinfo.texi hwdebugaids.texi projects.texi \
|
||||||
endoftime.texi
|
endoftime.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES =
|
FILES =
|
||||||
|
|
||||||
@@ -83,4 +84,5 @@ $(srcdir)/endoftime.texi: endoftime.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = entry *.t
|
EXTRA_DIST = entry basic.t bsp.t build45.t concepts.t debug.t embeddedinfo.t \
|
||||||
|
endoftime.t freesw.t hwdebugaids.t projects.t tools.t
|
||||||
|
|||||||
@@ -176,8 +176,6 @@ No.
|
|||||||
|
|
||||||
@section RTEMS Mailing List
|
@section RTEMS Mailing List
|
||||||
|
|
||||||
Yes.
|
|
||||||
|
|
||||||
@example
|
@example
|
||||||
rtems-users@@OARcorp.com
|
rtems-users@@OARcorp.com
|
||||||
@end example
|
@end example
|
||||||
|
|||||||
@@ -6,41 +6,20 @@ AUTOMAKE_OPTIONS = foreign 1.4
|
|||||||
|
|
||||||
# NOTE: The order of the directories is essential.
|
# NOTE: The order of the directories is essential.
|
||||||
# + tools, common and images are shared across many documents
|
# + tools, common and images are shared across many documents
|
||||||
SUBDIRS = \
|
|
||||||
tools \
|
SUBDIRS = tools common images FAQ started user bsp_howto porting develenv \
|
||||||
common \
|
posix_users posix1003.1 filesystem itron3.0 networking ada_user \
|
||||||
images \
|
started_ada rtems_gdb rgdb_specs new_chapters relnotes supplements \
|
||||||
FAQ \
|
gnu_docs src2html
|
||||||
started \
|
|
||||||
user \
|
|
||||||
bsp_howto \
|
|
||||||
porting \
|
|
||||||
develenv \
|
|
||||||
posix_users \
|
|
||||||
posix1003.1 \
|
|
||||||
filesystem \
|
|
||||||
itron3.0 \
|
|
||||||
networking \
|
|
||||||
ada_user \
|
|
||||||
started_ada \
|
|
||||||
rtems_gdb \
|
|
||||||
rgdb_specs \
|
|
||||||
new_chapters \
|
|
||||||
relnotes \
|
|
||||||
supplements \
|
|
||||||
gnu_docs \
|
|
||||||
src2html
|
|
||||||
|
|
||||||
if USE_HTML
|
if USE_HTML
|
||||||
html_DATA = index.html HELP.html BAD.html
|
html_DATA = index.html HELP.html
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AUTOMAKE_FILES = project.am
|
AUTOMAKE_FILES = project.am
|
||||||
|
|
||||||
noinst_SCRIPTS = bootstrap
|
noinst_SCRIPTS = bootstrap
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = $(AUTOMAKE_FILES) HELP.html texinfo/texinfo.tex \
|
||||||
$(AUTOMAKE_FILES) \
|
$(noinst_SCRIPTS) rtems_header.html.in rtems_footer.html.in
|
||||||
HELP.html BAD.html \
|
|
||||||
texinfo/texinfo.tex \
|
|
||||||
$(noinst_SCRIPTS)
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ rtemspie.eps: $(top_srcdir)/user/rtemspie.eps
|
|||||||
$(LN_S) $<
|
$(LN_S) $<
|
||||||
states.eps: $(top_srcdir)/user/states.eps
|
states.eps: $(top_srcdir)/user/states.eps
|
||||||
$(LN_S) $<
|
$(LN_S) $<
|
||||||
CLEANFILES += rtemspie.eps states.eps
|
CLEANFILES += rtemspie.eps states.eps rtemsarc.png rtemspie.png states.png
|
||||||
|
|
||||||
rtemsarc.png: $(top_srcdir)/user/rtemsarc.png
|
rtemsarc.png: $(top_srcdir)/user/rtemsarc.png
|
||||||
$(LN_S) $<
|
$(LN_S) $<
|
||||||
@@ -42,7 +42,6 @@ rtemspie.png: $(top_srcdir)/user/rtemspie.png
|
|||||||
$(LN_S) $<
|
$(LN_S) $<
|
||||||
states.png: $(top_srcdir)/user/states.png
|
states.png: $(top_srcdir)/user/states.png
|
||||||
$(LN_S) $<
|
$(LN_S) $<
|
||||||
CLEANFILES += rtemsarc.png rtemspie.png states.png
|
|
||||||
|
|
||||||
info_TEXINFOS = ada_user.texi
|
info_TEXINFOS = ada_user.texi
|
||||||
ada_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
ada_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -70,39 +70,39 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
@c The alternative is to rework a sentence to avoid this problem.
|
@c The alternative is to rework a sentence to avoid this problem.
|
||||||
|
|
||||||
@include ../user/preface.texi
|
@include user/preface.texi
|
||||||
@include ../user/overview.texi
|
@include user/overview.texi
|
||||||
@include ../user/concepts.texi
|
@include user/concepts.texi
|
||||||
@include ../user/datatypes.texi
|
@include user/datatypes.texi
|
||||||
@include ../user/init.texi
|
@include user/init.texi
|
||||||
@include ../user/task.texi
|
@include user/task.texi
|
||||||
@include ../user/intr.texi
|
@include user/intr.texi
|
||||||
@include ../user/clock.texi
|
@include user/clock.texi
|
||||||
@include ../user/timer.texi
|
@include user/timer.texi
|
||||||
@include ../user/sem.texi
|
@include user/sem.texi
|
||||||
@include ../user/msg.texi
|
@include user/msg.texi
|
||||||
@include ../user/event.texi
|
@include user/event.texi
|
||||||
@include ../user/signal.texi
|
@include user/signal.texi
|
||||||
@include ../user/part.texi
|
@include user/part.texi
|
||||||
@include ../user/region.texi
|
@include user/region.texi
|
||||||
@include ../user/dpmem.texi
|
@include user/dpmem.texi
|
||||||
@include ../user/io.texi
|
@include user/io.texi
|
||||||
@include ../user/fatal.texi
|
@include user/fatal.texi
|
||||||
@include ../user/schedule.texi
|
@include user/schedule.texi
|
||||||
@include ../user/rtmon.texi
|
@include user/rtmon.texi
|
||||||
@include ../user/bsp.texi
|
@include user/bsp.texi
|
||||||
@include ../user/userext.texi
|
@include user/userext.texi
|
||||||
@include ../user/conf.texi
|
@include user/conf.texi
|
||||||
@include ../user/mp.texi
|
@include user/mp.texi
|
||||||
@include ../user/dirstat.texi
|
@include user/dirstat.texi
|
||||||
@include example.texi
|
@include example.texi
|
||||||
@include ../user/glossary.texi
|
@include user/glossary.texi
|
||||||
@ifinfo
|
@ifinfo
|
||||||
@node Top, Preface, (dir), (dir)
|
@node Top, Preface, (dir), (dir)
|
||||||
@top ada_user
|
@top ada_user
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ GENERATED_FILES = intro.texi target.texi makefiles.texi linkcmds.texi \
|
|||||||
support.texi adaintr.texi init.texi console.texi clock.texi timer.texi \
|
support.texi adaintr.texi init.texi console.texi clock.texi timer.texi \
|
||||||
rtc.texi nvmem.texi network.texi shmsupp.texi analog.texi discrete.texi
|
rtc.texi nvmem.texi network.texi shmsupp.texi analog.texi discrete.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES =
|
FILES =
|
||||||
|
|
||||||
@@ -110,4 +111,6 @@ $(srcdir)/discrete.texi: discrete.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = adaintr.t analog.t clock.t console.t discrete.t init.t intro.t \
|
||||||
|
linkcmds.t makefiles.t nvmem.t rtc.t shmsupp.t support.t target.t \
|
||||||
|
timer.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = cpright.texi setup.texi timemac.texi timetbl.t treedef.tex \
|
||||||
cpright.texi setup.texi timemac.texi \
|
wksheets.t timing.t
|
||||||
timetbl.t treedef.tex wksheets.t timing.t
|
|
||||||
|
|
||||||
|
|||||||
@@ -92,10 +92,6 @@ AM_CONDITIONAL(USE_PDF,
|
|||||||
&& test x"$TEXI2DVI" != x"" \
|
&& test x"$TEXI2DVI" != x"" \
|
||||||
&& test x"$TEXI2PDF" != x"" )
|
&& test x"$TEXI2PDF" != x"" )
|
||||||
|
|
||||||
AM_CONDITIONAL(USE_EXP, test x=y )
|
|
||||||
|
|
||||||
BMENU='$(top_builddir)/tools/bmenu/bmenu'
|
|
||||||
AC_SUBST(BMENU)
|
|
||||||
BMENU2='$(top_builddir)/tools/bmenu/bmenu2'
|
BMENU2='$(top_builddir)/tools/bmenu/bmenu2'
|
||||||
AC_SUBST(BMENU2)
|
AC_SUBST(BMENU2)
|
||||||
|
|
||||||
@@ -111,8 +107,6 @@ AC_CONFIG_SUBDIRS(tools)
|
|||||||
|
|
||||||
AC_OUTPUT(
|
AC_OUTPUT(
|
||||||
Makefile
|
Makefile
|
||||||
rtems_header.html
|
|
||||||
rtems_footer.html
|
|
||||||
rtems_support.html
|
rtems_support.html
|
||||||
index.html
|
index.html
|
||||||
images/Makefile
|
images/Makefile
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ include $(top_srcdir)/project.am
|
|||||||
|
|
||||||
FILES = compile.texi direct.texi intro.texi sample.texi utils.texi
|
FILES = compile.texi direct.texi intro.texi sample.texi utils.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
info_TEXINFOS = develenv.texi
|
info_TEXINFOS = develenv.texi
|
||||||
develenv_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
develenv_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ BMENU2 += -c
|
|||||||
|
|
||||||
GENERATED_FILES = patheval.texi init.texi mounting.texi syscalls.texi \
|
GENERATED_FILES = patheval.texi init.texi mounting.texi syscalls.texi \
|
||||||
fsrequirements.texi imfs.texi miniimfs.texi tftp.texi
|
fsrequirements.texi imfs.texi miniimfs.texi tftp.texi
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -64,4 +65,5 @@ $(srcdir)/tftp.texi: tftp.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = fsrequirements.t imfs.t init.t miniimfs.t mounting.t patheval.t \
|
||||||
|
syscalls.t tftp.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = gnu_footer.html mk_install_dir Tool_Doc_Instructions \
|
||||||
gnu_footer.html \
|
gnu_header.html refcard.html gen_docs index.html rtems_tools_index.html \
|
||||||
mk_install_dir \
|
gen_docs
|
||||||
Tool_Doc_Instructions \
|
|
||||||
gnu_header.html \
|
|
||||||
refcard.html \
|
|
||||||
gen_docs \
|
|
||||||
index.html \
|
|
||||||
rtems_tools_index.html
|
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
html_imagesdir = $(htmldir)/images
|
html_imagesdir = $(htmldir)/images
|
||||||
|
|
||||||
HTML_IMAGES = dir-arrow.gif dvi.gif missing-arrow.gif next-arrow.gif \
|
HTML_IMAGES = dir-arrow.gif dvi.gif missing-arrow.gif next-arrow.gif \
|
||||||
oaronly.jpg pdf.gif pdf1.gif prev-arrow.gif ps.gif up-arrow.gif
|
oaronly.jpg pdf.gif pdf1.gif prev-arrow.gif ps.gif up-arrow.gif
|
||||||
|
|
||||||
if USE_HTML
|
if USE_HTML
|
||||||
html_images_DATA = $(HTML_IMAGES)
|
html_images_DATA = $(HTML_IMAGES)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = $(HTML_IMAGES)
|
EXTRA_DIST = $(HTML_IMAGES)
|
||||||
|
|||||||
@@ -97,4 +97,6 @@ $(srcdir)/network.texi: network.t
|
|||||||
|
|
||||||
noinst_SCRIPTS = gen_all gen_section gen_status_shell
|
noinst_SCRIPTS = gen_all gen_section gen_status_shell
|
||||||
|
|
||||||
EXTRA_DIST = *.t $(noinst_SCRIPTS)
|
EXTRA_DIST = config.t eventflags.t fixedblock.t interrupt.t mailbox.t \
|
||||||
|
memorypool.t msgbuffer.t network.t rendezvous.t semaphore.t status.t \
|
||||||
|
task.t tasksync.t time.t $(noinst_SCRIPTS)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
|
|||||||
@@ -17,14 +17,15 @@ BMENU2 += -c
|
|||||||
GENERATED_FILES = networkapp.texi driver.texi networktasks.texi testing.texi \
|
GENERATED_FILES = networkapp.texi driver.texi networktasks.texi testing.texi \
|
||||||
servers.texi decdriver.texi
|
servers.texi decdriver.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = networktasks.texi preface.texi
|
FILES = networktasks.texi preface.texi
|
||||||
|
|
||||||
info_TEXINFOS = networking.texi
|
info_TEXINFOS = networking.texi
|
||||||
networking_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
networking_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
|
|
||||||
$(PROJECT).dvi: networkflow.eps PCIreg.eps recvbd.eps
|
$(PROJECT).dvi: ./networkflow.eps ./PCIreg.eps ./recvbd.eps
|
||||||
|
|
||||||
PDF_IMAGES = networkflow.pdf PCIreg.pdf recvbd.pdf
|
PDF_IMAGES = networkflow.pdf PCIreg.pdf recvbd.pdf
|
||||||
|
|
||||||
@@ -65,4 +66,5 @@ $(srcdir)/decdriver.texi: decdriver.t
|
|||||||
PICTURE_FILES = PCIreg.eps PCIreg.jpg networkflow.eps networkflow.jpg \
|
PICTURE_FILES = PCIreg.eps PCIreg.jpg networkflow.eps networkflow.jpg \
|
||||||
networkflow.png recvbd.eps recvbd.jpg
|
networkflow.png recvbd.eps recvbd.jpg
|
||||||
|
|
||||||
EXTRA_DIST = *.t $(PICTURE_FILES)
|
EXTRA_DIST = decdriver.t driver.t networkapp.t networktasks.t servers.t \
|
||||||
|
testing.t $(PICTURE_FILES)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ GENERATED_FILES = adminiface.texi confspace.texi dumpcontrol.texi \
|
|||||||
eventlog.texi stackchk.texi rtmonuse.texi cpuuse.texi error.texi \
|
eventlog.texi stackchk.texi rtmonuse.texi cpuuse.texi error.texi \
|
||||||
monitor.texi
|
monitor.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES =
|
FILES =
|
||||||
|
|
||||||
@@ -71,4 +72,5 @@ $(srcdir)/monitor.texi: monitor.t
|
|||||||
|
|
||||||
noinst_SCRIPTS = gen_section
|
noinst_SCRIPTS = gen_section
|
||||||
|
|
||||||
EXTRA_DIST = *.t STATUS TODO $(noinst_SCRIPTS)
|
EXTRA_DIST = adminiface.t base.t confspace.t cpuuse.t dumpcontrol.t error.t \
|
||||||
|
eventlog.t monitor.t rtmonuse.t stackchk.t STATUS TODO $(noinst_SCRIPTS)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -21,7 +21,8 @@ GENERATED_FILES = developtools.texi sourcecode.texi cpumodels.texi \
|
|||||||
cpuinit.texi interrupts.texi taskcontext.texi idlethread.texi \
|
cpuinit.texi interrupts.texi taskcontext.texi idlethread.texi \
|
||||||
prioritybitmap.texi codetuning.texi miscellaneous.texi
|
prioritybitmap.texi codetuning.texi miscellaneous.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
info_TEXINFOS = porting.texi
|
info_TEXINFOS = porting.texi
|
||||||
porting_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
porting_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
@@ -76,4 +77,5 @@ $(srcdir)/miscellaneous.texi: miscellaneous.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" < $< > $@
|
-n "Command and Variable Index" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = codetuning.t cpuinit.t cpumodels.t developtools.t idlethread.t \
|
||||||
|
interrupts.t miscellaneous.t prioritybitmap.t sourcecode.t taskcontext.t
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = ch01.texi ch02.texi ch03.texi ch04.texi ch05.texi \
|
|||||||
ch13.texi ch14.texi ch15.texi ch16.texi ch17.texi ch18.texi ch19.t \
|
ch13.texi ch14.texi ch15.texi ch16.texi ch17.texi ch18.texi ch19.t \
|
||||||
ch19.texi
|
ch19.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -115,10 +116,10 @@ $(srcdir)/ch18.texi: ch18.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Compliance Summary" < $< > $@
|
-n "Compliance Summary" < $< > $@
|
||||||
|
|
||||||
ch19.t: ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t ch09.t \
|
$(srcdir)/ch19.t: ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
|
||||||
ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t \
|
ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t \
|
||||||
summarize
|
summarize
|
||||||
./summarize >ch19.t
|
(cd $(srcdir) && ./summarize > $@)
|
||||||
|
|
||||||
$(srcdir)/ch19.texi: ch19.t
|
$(srcdir)/ch19.texi: ch19.t
|
||||||
$(BMENU2) -c -p "List of Cancellation Points" \
|
$(BMENU2) -c -p "List of Cancellation Points" \
|
||||||
@@ -127,4 +128,6 @@ $(srcdir)/ch19.texi: ch19.t
|
|||||||
|
|
||||||
noinst_SCRIPTS = summarize
|
noinst_SCRIPTS = summarize
|
||||||
|
|
||||||
EXTRA_DIST = *.t compliance_list summarize
|
EXTRA_DIST = ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t ch09.t \
|
||||||
|
ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t ch19.t \
|
||||||
|
compliance_list summarize
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -19,11 +19,12 @@ GENERATED_FILES = cancel.texi clock.texi cond.texi cspecific.texi \
|
|||||||
signal.texi status.texi systemdb.texi thread.texi timer.texi libc.texi \
|
signal.texi status.texi systemdb.texi thread.texi timer.texi libc.texi \
|
||||||
libm.texi
|
libm.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
info_TEXINFOS = posix_users.texi
|
info_TEXINFOS = posix_users.texi
|
||||||
posix_users_TEXINFOS = $(FILES) $(GENERATED_FILES)
|
posix_users_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
|
|
||||||
$(srcdir)/process.texi: process.t
|
$(srcdir)/process.texi: process.t
|
||||||
$(BMENU2) -p "" \
|
$(BMENU2) -p "" \
|
||||||
@@ -136,5 +137,8 @@ $(srcdir)/libm.texi: libm.t
|
|||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
noinst_SCRIPTS = gen_size_report
|
noinst_SCRIPTS = gen_size_report
|
||||||
EXTRA_DIST = *.t gen_size_report
|
EXTRA_DIST = cancel.t clock.t cond.t cspecific.t device.t files.t io.t key.t \
|
||||||
|
libc.t libm.t memorymgmt.t message.t mutex.t procenv.t process.t sched.t \
|
||||||
|
semaphores.t signal.t status.t systemdb.t thread.t timer.t \
|
||||||
|
gen_size_report
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -72,7 +72,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -4,6 +4,12 @@ SUFFIXES += .t
|
|||||||
|
|
||||||
## Texinfo support
|
## Texinfo support
|
||||||
TEXINFO_TEX = $(top_srcdir)/texinfo/texinfo.tex
|
TEXINFO_TEX = $(top_srcdir)/texinfo/texinfo.tex
|
||||||
|
TEXINPUTS = $(srcdir):$(top_srcdir)
|
||||||
|
|
||||||
|
.texi:
|
||||||
|
@cd $(srcdir) && rm -f $@ $@-[0-9] $@-[0-9][0-9]
|
||||||
|
cd $(srcdir) \
|
||||||
|
&& $(MAKEINFO) -I $(top_srcdir) `echo $< | sed 's,.*/,,'`
|
||||||
|
|
||||||
$(srcdir)/stamp-vti: $(PROJECT).texi $(top_srcdir)/configure.in
|
$(srcdir)/stamp-vti: $(PROJECT).texi $(top_srcdir)/configure.in
|
||||||
@echo "@set UPDATED `$(SHELL) $(srcdir)/mdate-sh \
|
@echo "@set UPDATED `$(SHELL) $(srcdir)/mdate-sh \
|
||||||
@@ -37,13 +43,14 @@ SUFFIXES += .eps
|
|||||||
|
|
||||||
if EPSTOPDF
|
if EPSTOPDF
|
||||||
.eps.pdf:
|
.eps.pdf:
|
||||||
$(EPSTOPDF) $< > $@
|
$(EPSTOPDF) $< --outfile=$@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if TEXI2PDF
|
if TEXI2PDF
|
||||||
.texi.pdf:
|
.texi.pdf:
|
||||||
TEXINPUTS=$(srcdir)/$(top_srcdir)/texinfo:$$TEXINPUTS \
|
TEXINPUTS=$(srcdir)/$(top_srcdir)/texinfo:$$TEXINPUTS \
|
||||||
MAKEINFO='$(MAKEINFO) -I $(srcdir)' $(TEXI2PDF) $<
|
MAKEINFO='$(MAKEINFO)' \
|
||||||
|
$(TEXI2PDF) $<
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(PROJECT).pdf: $(PROJECT).texi $($(PROJECT)_TEXINFOS) $(PDF_IMAGES)
|
$(PROJECT).pdf: $(PROJECT).texi $($(PROJECT)_TEXINFOS) $(PDF_IMAGES)
|
||||||
@@ -58,16 +65,27 @@ html_projectdir = $(htmldir)/$(PROJECT)
|
|||||||
|
|
||||||
TEXI2WWW_ARGS=\
|
TEXI2WWW_ARGS=\
|
||||||
-I $(srcdir) \
|
-I $(srcdir) \
|
||||||
|
-I $(top_srcdir) \
|
||||||
-dirfile ../index.html \
|
-dirfile ../index.html \
|
||||||
-header $(top_builddir)/rtems_header.html \
|
-header rtems_header.html \
|
||||||
-footer $(top_builddir)/rtems_footer.html \
|
-footer rtems_footer.html \
|
||||||
-icons ../images
|
-icons $(top_builddir)/images
|
||||||
|
|
||||||
|
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 \
|
index.html $(PROJECT)*.html: $(PROJECT).texi \
|
||||||
$(top_builddir)/rtems_header.html $(top_builddir)/rtems_footer.html
|
rtems_header.html rtems_footer.html
|
||||||
$(TEXI2WWW) $(TEXI2WWW_ARGS) -base $(PROJECT) $<
|
$(TEXI2WWW) $(TEXI2WWW_ARGS) -base $(PROJECT) $<
|
||||||
|
|
||||||
MOSTLYCLEANFILES += index.html $(PROJECT)*.html
|
MOSTLYCLEANFILES += index.html $(PROJECT)*.html rtems_header.html \
|
||||||
|
rtems_footer.html
|
||||||
|
|
||||||
## Common installation points
|
## Common installation points
|
||||||
if USE_HTML
|
if USE_HTML
|
||||||
|
|||||||
@@ -13,7 +13,8 @@ EDITION = 1
|
|||||||
|
|
||||||
include $(top_srcdir)/project.am
|
include $(top_srcdir)/project.am
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = install.texi intro.texi probrep.texi relnotes.texi status.texi
|
FILES = install.texi intro.texi probrep.texi relnotes.texi status.texi
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ include $(top_srcdir)/project.am
|
|||||||
|
|
||||||
GENERATED_FILES = intro.texi revision.texi objectives.texi gdbinternals.texi \
|
GENERATED_FILES = intro.texi revision.texi objectives.texi gdbinternals.texi \
|
||||||
interfacing.texi comm.texi daemon.texi conclusion.texi
|
interfacing.texi comm.texi daemon.texi conclusion.texi
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES =
|
FILES =
|
||||||
|
|
||||||
@@ -76,4 +77,5 @@ $(srcdir)/conclusion.texi: conclusion.t
|
|||||||
|
|
||||||
noinst_DATA = layers.eps process.eps seqdetach.eps seqbreak.eps seqinit.eps
|
noinst_DATA = layers.eps process.eps seqdetach.eps seqbreak.eps seqinit.eps
|
||||||
|
|
||||||
EXTRA_DIST = *.t $(noinst_DATA) $(JPEG_FILES)
|
EXTRA_DIST = comm.t conclusion.t daemon.t gdbinternals.t interfacing.t \
|
||||||
|
intro.t objectives.t revision.t $(noinst_DATA) $(JPEG_FILES)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author Emmanuel Raguet and Eric Valette, Canon Research Centre
|
@author Emmanuel Raguet and Eric Valette, Canon Research Centre
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ include $(top_srcdir)/project.am
|
|||||||
GENERATED_FILES = intro.texi swarch.texi started.texi commands.texi \
|
GENERATED_FILES = intro.texi swarch.texi started.texi commands.texi \
|
||||||
trouble.texi example.texi
|
trouble.texi example.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES =
|
FILES =
|
||||||
|
|
||||||
@@ -57,4 +58,4 @@ $(srcdir)/example.texi: example.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = commands.t example.t intro.t started.t swarch.t trouble.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author Emmanuel Raguet and Eric Valette, Canon Research Centre
|
@author Emmanuel Raguet and Eric Valette, Canon Research Centre
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
PROJECT=browseable_rtems
|
PROJECT = browseable_rtems
|
||||||
|
|
||||||
# FIXME: Yet unported
|
# FIXME: Yet unported
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ include $(top_srcdir)/project.am
|
|||||||
GENERATED_FILES = binaries.texi buildc.texi buildrt.texi gdb.texi intro.texi \
|
GENERATED_FILES = binaries.texi buildc.texi buildrt.texi gdb.texi intro.texi \
|
||||||
nt.texi require.texi nextstep.texi sample.texi
|
nt.texi require.texi nextstep.texi sample.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = tversions.texi
|
FILES = tversions.texi
|
||||||
|
|
||||||
@@ -55,7 +56,7 @@ $(srcdir)/sample.texi: sample.t tversions.texi
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Building the GNU Debugger" < $< > $@
|
-n "Building the GNU Debugger" < $< > $@
|
||||||
|
|
||||||
gdb.texi: gdb.t tversions.texi
|
$(srcdir)/gdb.texi: gdb.t tversions.texi
|
||||||
$(BMENU2) -c -p "More Information on RTEMS Application Makefiles" \
|
$(BMENU2) -c -p "More Information on RTEMS Application Makefiles" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Where To Go From Here" < $< > $@
|
-n "Where To Go From Here" < $< > $@
|
||||||
@@ -70,4 +71,5 @@ $(srcdir)/nt.texi: nt.t tversions.texi
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = binaries.t buildc.t buildrt.t gdb.t intro.t nextstep.t nt.t \
|
||||||
|
require.t sample.t
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
PROJECT = started
|
PROJECT = started
|
||||||
|
|
||||||
@@ -10,4 +10,12 @@ if USE_HTML
|
|||||||
html_project_DATA += sfile12c.jpg bit_c.jpg
|
html_project_DATA += sfile12c.jpg bit_c.jpg
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = *.jpg *.vsd
|
noinst_DATA += bit_ada.jpg bit_ada.vsd bit_c.jpg bit_c.vsd scfile10.jpg \
|
||||||
|
scfile10.vsd scfile11.jpg scfile11.vsd scfile12.jpg scfile12.vsd \
|
||||||
|
scfile13.jpg scfile13.vsd scsfile1.jpg scsfile1.vsd scsfile2.jpg \
|
||||||
|
scsfile2.vsd scsfile3.jpg scsfile3.vsd scsfile4.jpg scsfile4.vsd \
|
||||||
|
scsfile5.jpg scsfile5.vsd scsfile6.jpg scsfile6.vsd scsfile7.jpg \
|
||||||
|
scsfile7.vsd scsfile8.jpg scsfile8.vsd scsfile9.jpg scsfile9.vsd \
|
||||||
|
sfile12c.jpg sfile12c.vsd
|
||||||
|
|
||||||
|
EXTRA_DIST = $(noinst_DATA)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@c
|
@c
|
||||||
@c Now set all the tool version dependent information
|
@c Now set all the tool version dependent information
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ include $(top_srcdir)/project.am
|
|||||||
GENERATED_FILES = buildada.texi buildrt.texi gdb.texi intro.texi \
|
GENERATED_FILES = buildada.texi buildrt.texi gdb.texi intro.texi \
|
||||||
require.texi sample.texi
|
require.texi sample.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = tversions.texi
|
FILES = tversions.texi
|
||||||
|
|
||||||
@@ -53,4 +54,4 @@ $(srcdir)/gdb.texi: gdb.t tversions.texi
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "" < $< > $@
|
-n "" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = *.t
|
EXTRA_DIST = buildada.t gdb.t intro.t require.t sample.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@c
|
@c
|
||||||
@c Now set all the tool version dependent information
|
@c Now set all the tool version dependent information
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
SUBDIRS = hppa1_1 i386 i960 m68k mips64orion powerpc sh sparc template
|
SUBDIRS = hppa1_1 i386 i960 m68k mips64orion powerpc sh sparc template
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
||||||
timeSIMHPPA.texi
|
timeSIMHPPA.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -99,4 +100,5 @@ $(srcdir)/timeSIMHPPA.texi: timeSIMHPPA.t
|
|||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" < $< > $@
|
-n "Command and Variable Index" < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = SIMHPPA_TIMES *.t
|
EXTRA_DIST = SIMHPPA_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeSIMHPPA.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
||||||
timeFORCE386.texi
|
timeFORCE386.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -95,15 +96,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeFORCE386.texi: $(top_srcdir)/common/timetbl.t timeFORCE386.t
|
$(srcdir)/timeFORCE386.texi: $(top_srcdir)/common/timetbl.t timeFORCE386.t
|
||||||
cat timeFORCE386.t $(top_srcdir)/common/timetbl.t >timeFORCE386_.t
|
cat $(srcdir)/timeFORCE386.t $(top_srcdir)/common/timetbl.t >timeFORCE386_.t
|
||||||
@echo >>timeFORCE386_.t
|
@echo >>timeFORCE386_.t
|
||||||
@echo "@tex" >>timeFORCE386_.t
|
@echo "@tex" >>timeFORCE386_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeFORCE386_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeFORCE386_.t
|
||||||
@echo "@end tex" >>timeFORCE386_.t
|
@echo "@end tex" >>timeFORCE386_.t
|
||||||
${REPLACE2} -p FORCE386_TIMES timeFORCE386_.t | \
|
${REPLACE2} -p $(srcdir)/FORCE386_TIMES timeFORCE386_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeFORCE386_.t
|
CLEANFILES += timeFORCE386_.t
|
||||||
|
|
||||||
EXTRA_DIST = FORCE386_TIMES *.t
|
EXTRA_DIST = FORCE386_TIMES bsp.t callconv.t cpumodel.t cputable.t \
|
||||||
|
fatalerr.t intr_NOTIMES.t memmodel.t timeFORCE386.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ include $(top_srcdir)/supplements/supplement.am
|
|||||||
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
||||||
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
||||||
timeCVME961.texi
|
timeCVME961.texi
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -94,15 +95,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeCVME961.texi: $(top_srcdir)/common/timetbl.t timeCVME961.t
|
$(srcdir)/timeCVME961.texi: $(top_srcdir)/common/timetbl.t timeCVME961.t
|
||||||
cat timeCVME961.t $(top_srcdir)/common/timetbl.t >timeCVME961_.t
|
cat $(srcdir)/timeCVME961.t $(top_srcdir)/common/timetbl.t >timeCVME961_.t
|
||||||
@echo >>timeCVME961_.t
|
@echo >>timeCVME961_.t
|
||||||
@echo "@tex" >>timeCVME961_.t
|
@echo "@tex" >>timeCVME961_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeCVME961_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeCVME961_.t
|
||||||
@echo "@end tex" >>timeCVME961_.t
|
@echo "@end tex" >>timeCVME961_.t
|
||||||
${REPLACE2} -p CVME961_TIMES timeCVME961_.t | \
|
${REPLACE2} -p $(srcdir)/CVME961_TIMES timeCVME961_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeCVME961_.t
|
CLEANFILES += timeCVME961_.t
|
||||||
|
|
||||||
EXTRA_DIST = CVME961_TIMES *.t
|
EXTRA_DIST = CVME961_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeCVME961.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
||||||
timeMVME136.texi
|
timeMVME136.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -95,15 +96,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeMVME136.texi: $(top_srcdir)/common/timetbl.t timeMVME136.t
|
$(srcdir)/timeMVME136.texi: $(top_srcdir)/common/timetbl.t timeMVME136.t
|
||||||
cat timeMVME136.t $(top_srcdir)/common/timetbl.t >timeMVME136_.t
|
cat $(srcdir)/timeMVME136.t $(top_srcdir)/common/timetbl.t >timeMVME136_.t
|
||||||
@echo >>timeMVME136_.t
|
@echo >>timeMVME136_.t
|
||||||
@echo "@tex" >>timeMVME136_.t
|
@echo "@tex" >>timeMVME136_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeMVME136_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeMVME136_.t
|
||||||
@echo "@end tex" >>timeMVME136_.t
|
@echo "@end tex" >>timeMVME136_.t
|
||||||
${REPLACE2} -p MVME136_TIMES timeMVME136_.t | \
|
${REPLACE2} -p $(srcdir)/MVME136_TIMES timeMVME136_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeMVME136_.t
|
CLEANFILES += timeMVME136_.t
|
||||||
|
|
||||||
EXTRA_DIST = MVME136_TIMES *.t
|
EXTRA_DIST = MVME136_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeMVME136.t timedata.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
|
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
||||||
timeBSP.texi
|
timeBSP.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -95,15 +96,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
||||||
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
cat $(srcdir)/timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
||||||
@echo >>timeBSP_.t
|
@echo >>timeBSP_.t
|
||||||
@echo "@tex" >>timeBSP_.t
|
@echo "@tex" >>timeBSP_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
||||||
@echo "@end tex" >>timeBSP_.t
|
@echo "@end tex" >>timeBSP_.t
|
||||||
${REPLACE2} -p BSP_TIMES timeBSP_.t | \
|
${REPLACE2} -p $(srcdir)/BSP_TIMES timeBSP_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeBSP_.t
|
CLEANFILES += timeBSP_.t
|
||||||
|
|
||||||
EXTRA_DIST = BSP_TIMES *.t
|
EXTRA_DIST = BSP_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeBSP.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
|
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ include $(top_srcdir)/supplements/supplement.am
|
|||||||
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
||||||
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
||||||
timePSIM.texi timeDMV177.texi
|
timePSIM.texi timeDMV177.texi
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -93,16 +94,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timePSIM.texi: $(top_srcdir)/common/timetbl.t timePSIM.t
|
$(srcdir)/timePSIM.texi: $(top_srcdir)/common/timetbl.t timePSIM.t
|
||||||
cat timePSIM.t $(top_srcdir)/common/timetbl.t >timePSIM_.t
|
cat $(srcdir)/timePSIM.t $(top_srcdir)/common/timetbl.t >timePSIM_.t
|
||||||
@echo >>timePSIM_.t
|
@echo >>timePSIM_.t
|
||||||
@echo "@tex" >>timePSIM_.t
|
@echo "@tex" >>timePSIM_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timePSIM_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timePSIM_.t
|
||||||
@echo "@end tex" >>timePSIM_.t
|
@echo "@end tex" >>timePSIM_.t
|
||||||
${REPLACE2} -p PSIM_TIMES timePSIM_.t | \
|
${REPLACE2} -p $(srcdir)/PSIM_TIMES timePSIM_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "DMV177 Timing Data" > $@
|
-n "DMV177 Timing Data" > $@
|
||||||
CLEANFILES += timePSIM_.t
|
CLEANFILES += timePSIM_.t timeDMV177_.t
|
||||||
|
|
||||||
# Timing Data for DMV177 BSP Chapter:
|
# Timing Data for DMV177 BSP Chapter:
|
||||||
# 1. Copy the Shared File
|
# 1. Copy the Shared File
|
||||||
@@ -110,15 +111,15 @@ CLEANFILES += timePSIM_.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeDMV177.texi: $(top_srcdir)/common/timetbl.t timeDMV177.t
|
$(srcdir)/timeDMV177.texi: $(top_srcdir)/common/timetbl.t timeDMV177.t
|
||||||
cat timeDMV177.t $(top_srcdir)/common/timetbl.t >timeDMV177_.t
|
cat $(srcdir)/timeDMV177.t $(top_srcdir)/common/timetbl.t >timeDMV177_.t
|
||||||
@echo >>timeDMV177_.t
|
@echo >>timeDMV177_.t
|
||||||
@echo "@tex" >>timeDMV177_.t
|
@echo "@tex" >>timeDMV177_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeDMV177_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeDMV177_.t
|
||||||
@echo "@end tex" >>timeDMV177_.t
|
@echo "@end tex" >>timeDMV177_.t
|
||||||
${REPLACE2} -p DMV177_TIMES timeDMV177_.t | \
|
${REPLACE2} -p $(srcdir)/DMV177_TIMES timeDMV177_.t | \
|
||||||
$(BMENU2) -p "PSIM Timing Data Rate Monotonic Manager" \
|
$(BMENU2) -p "PSIM Timing Data Rate Monotonic Manager" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeDMV177_.t
|
|
||||||
|
|
||||||
EXTRA_DIST = DMV177_TIMES PSIM_TIMES *.t
|
EXTRA_DIST = DMV177_TIMES PSIM_TIMES bsp.t callconv.t cpumodel.t cputable.t \
|
||||||
|
fatalerr.t intr_NOTIMES.t memmodel.t timeDMV177.t timePSIM.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
||||||
timeBSP.texi
|
timeBSP.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -95,15 +96,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
||||||
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
cat $(srcdir)/timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
||||||
@echo >>timeBSP_.t
|
@echo >>timeBSP_.t
|
||||||
@echo "@tex" >>timeBSP_.t
|
@echo "@tex" >>timeBSP_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
||||||
@echo "@end tex" >>timeBSP_.t
|
@echo "@end tex" >>timeBSP_.t
|
||||||
${REPLACE2} -p BSP_TIMES timeBSP_.t | \
|
${REPLACE2} -p $(srcdir)/BSP_TIMES timeBSP_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeBSP_.t
|
CLEANFILES += timeBSP_.t
|
||||||
|
|
||||||
EXTRA_DIST = BSP_TIMES *.t
|
EXTRA_DIST = BSP_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeBSP.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
|
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
|||||||
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
|
||||||
timeERC32.texi
|
timeERC32.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -93,15 +94,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeERC32.texi: $(top_srcdir)/common/timetbl.t timeERC32.t
|
$(srcdir)/timeERC32.texi: $(top_srcdir)/common/timetbl.t timeERC32.t
|
||||||
cat timeERC32.t $(top_srcdir)/common/timetbl.t >timeERC32_.t
|
cat $(srcdir)/timeERC32.t $(top_srcdir)/common/timetbl.t >timeERC32_.t
|
||||||
@echo >>timeERC32_.t
|
@echo >>timeERC32_.t
|
||||||
@echo "@tex" >>timeERC32_.t
|
@echo "@tex" >>timeERC32_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeERC32_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeERC32_.t
|
||||||
@echo "@end tex" >>timeERC32_.t
|
@echo "@end tex" >>timeERC32_.t
|
||||||
${REPLACE2} -p ERC32_TIMES timeERC32_.t | \
|
${REPLACE2} -p $(srcdir)/ERC32_TIMES timeERC32_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeERC32_.t
|
CLEANFILES += timeERC32_.t
|
||||||
|
|
||||||
EXTRA_DIST = ERC32_TIMES *.t
|
EXTRA_DIST = ERC32_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeERC32.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -7,14 +7,11 @@
|
|||||||
REPLACE2 = $(PERL) $(top_srcdir)/tools/word-replace2
|
REPLACE2 = $(PERL) $(top_srcdir)/tools/word-replace2
|
||||||
|
|
||||||
MAINTAINERCLEANFILES += $(GENERATED_FILES)
|
MAINTAINERCLEANFILES += $(GENERATED_FILES)
|
||||||
CLEANFILES += *.fixed
|
|
||||||
|
|
||||||
html_projectdir = $(htmldir)/supplements/$(PROJECT)
|
html_projectdir = $(htmldir)/supplements/$(PROJECT)
|
||||||
|
|
||||||
TEXI2WWW_ARGS=\
|
TEXI2WWW_ARGS=\
|
||||||
-I $(srcdir) \
|
-I $(srcdir) -I $(top_srcdir) \
|
||||||
-dirfile ../../index.html \
|
-dirfile ../../index.html \
|
||||||
-header $(top_builddir)/rtems_header.html \
|
-header rtems_header.html \
|
||||||
-footer $(top_builddir)/rtems_footer.html \
|
-footer rtems_footer.html \
|
||||||
-icons ../../images
|
-icons ../../images
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ include $(top_srcdir)/supplements/supplement.am
|
|||||||
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
|
||||||
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
fatalerr.texi bsp.texi cputable.texi wksheets.texi timing.texi \
|
||||||
timeBSP.texi
|
timeBSP.texi
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
|
||||||
|
|
||||||
FILES = preface.texi
|
FILES = preface.texi
|
||||||
|
|
||||||
@@ -94,15 +95,16 @@ $(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
|
|||||||
# 3. Build Node Structure
|
# 3. Build Node Structure
|
||||||
|
|
||||||
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
$(srcdir)/timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
|
||||||
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
cat $(srcdir)/timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
|
||||||
@echo >>timeBSP_.t
|
@echo >>timeBSP_.t
|
||||||
@echo "@tex" >>timeBSP_.t
|
@echo "@tex" >>timeBSP_.t
|
||||||
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
|
||||||
@echo "@end tex" >>timeBSP_.t
|
@echo "@end tex" >>timeBSP_.t
|
||||||
${REPLACE2} -p BSP_TIMES timeBSP_.t | \
|
${REPLACE2} -p $(srcdir)/BSP_TIMES timeBSP_.t | \
|
||||||
$(BMENU2) -p "Timing Specification Terminology" \
|
$(BMENU2) -p "Timing Specification Terminology" \
|
||||||
-u "Top" \
|
-u "Top" \
|
||||||
-n "Command and Variable Index" > $@
|
-n "Command and Variable Index" > $@
|
||||||
CLEANFILES += timeBSP_.t
|
CLEANFILES += timeBSP_.t
|
||||||
|
|
||||||
EXTRA_DIST = BSP_TIMES *.t
|
EXTRA_DIST = BSP_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
|
||||||
|
intr_NOTIMES.t memmodel.t timeBSP.t
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS Target Supplements
|
@dircategory RTEMS Target Supplements
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
|
|
||||||
@include ../../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
@c $Id$
|
@c $Id$
|
||||||
@c
|
@c
|
||||||
|
|
||||||
@include ../../common/timemac.texi
|
@include common/timemac.texi
|
||||||
@tex
|
@tex
|
||||||
\global\advance \smallskipamount by -4pt
|
\global\advance \smallskipamount by -4pt
|
||||||
@end tex
|
@end tex
|
||||||
|
|||||||
@@ -1,13 +1,8 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = word-replace2
|
||||||
word-replace2
|
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = bmenu src2html1.4a src2html pdl2texi texi2www
|
||||||
bmenu \
|
|
||||||
src2html1.4a \
|
|
||||||
src2html \
|
|
||||||
pdl2texi \
|
|
||||||
texi2www
|
|
||||||
|
|||||||
@@ -8,10 +8,8 @@
|
|||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
noinst_PROGRAMS=bmenu2
|
noinst_PROGRAMS = bmenu2
|
||||||
|
|
||||||
bmenu2_SOURCES = \
|
bmenu2_SOURCES = address.h chain.c isr.h address.inl chain.h bmenu2.c base.h \
|
||||||
address.h chain.c isr.h \
|
chain.inl system.h
|
||||||
address.inl chain.h bmenu2.c \
|
|
||||||
base.h chain.inl system.h
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,20 +6,18 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
PROG=pdl2texi
|
PROG = pdl2texi
|
||||||
noinst_PROGRAMS=$(PROG)
|
noinst_PROGRAMS = $(PROG)
|
||||||
|
|
||||||
#$(BASE).texi: $(BASE).d ./$(PROG)
|
#$(BASE).texi: $(BASE).d ./$(PROG)
|
||||||
# ./$(PROG) $(BASE).d
|
# ./$(PROG) $(BASE).d
|
||||||
|
|
||||||
pdl2texi_SOURCES = \
|
pdl2texi_SOURCES = address.inl chain.h main.c system.h base.h chain.inl \
|
||||||
address.inl chain.h main.c system.h \
|
address.h chain.c isr.h
|
||||||
base.h chain.inl address.h chain.c \
|
|
||||||
isr.h
|
|
||||||
|
|
||||||
BASE=sample
|
BASE = sample
|
||||||
|
|
||||||
#drive: Drive
|
#drive: Drive
|
||||||
#Drive: $(BASE).txt
|
#Drive: $(BASE).txt
|
||||||
@@ -55,5 +53,5 @@ clean:
|
|||||||
rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
|
rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
|
||||||
rm -f test_cases/*.txt test_cases/*.texi
|
rm -f test_cases/*.txt test_cases/*.texi
|
||||||
|
|
||||||
EXTRA_DIST = test_cases/enum.d test_cases/enumbad.d test_cases/table.d \
|
EXTRA_DIST = test_cases/enum.d test_cases/enumbad.d test_cases/table.d s.d \
|
||||||
s.d sample.d
|
sample.d
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
SRC2HTMLDIR=$(top_srcdir)/src2html1.4a
|
SRC2HTMLDIR = $(top_srcdir)/src2html1.4a
|
||||||
|
|
||||||
ctags-wr: $(SRC2HTMLDIR)/ctags-wr
|
ctags-wr: $(SRC2HTMLDIR)/ctags-wr
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
noinst_PROGRAMS = ctags-new
|
noinst_PROGRAMS = ctags-new
|
||||||
|
|
||||||
ctags_new_SOURCES = C.c ctags.c fortran.c lisp.c print.c \
|
ctags_new_SOURCES = C.c ctags.c fortran.c lisp.c print.c tree.c yacc.c \
|
||||||
tree.c yacc.c strerror.c ctags.h
|
strerror.c ctags.h
|
||||||
|
|
||||||
EXTRA_DIST = ctags.1 z.c
|
EXTRA_DIST = ctags.1 z.c
|
||||||
|
|||||||
@@ -1,21 +1,7 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = FreeBSD.hdr FreeBSD.s2h conf.hdr ddb.hdr i386.i386.hdr \
|
||||||
FreeBSD.hdr \
|
i386.include.hdr i386.isa.hdr i386.stand.hdr kern.hdr net.hdr \
|
||||||
FreeBSD.s2h \
|
netinet.hdr nfs.hdr stand.hdr sys.hdr ufs.hdr vm.hdr
|
||||||
conf.hdr \
|
|
||||||
ddb.hdr \
|
|
||||||
i386.i386.hdr \
|
|
||||||
i386.include.hdr \
|
|
||||||
i386.isa.hdr \
|
|
||||||
i386.stand.hdr \
|
|
||||||
kern.hdr \
|
|
||||||
net.hdr \
|
|
||||||
netinet.hdr \
|
|
||||||
nfs.hdr \
|
|
||||||
stand.hdr \
|
|
||||||
sys.hdr \
|
|
||||||
ufs.hdr \
|
|
||||||
vm.hdr
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
SUBDIRS = Ctags FreeBSD ctags-emacs
|
SUBDIRS = Ctags FreeBSD ctags-emacs
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
EXTRA_DIST = ctags etags.c-ada-patch README
|
EXTRA_DIST = ctags etags.c-ada-patch README
|
||||||
|
|||||||
@@ -6,19 +6,15 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
noinst_SCRIPTS = texi2www texi2dvi
|
noinst_SCRIPTS = texi2www texi2dvi
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = $(noinst_SCRIPTS) dir-arrow.gif prev-arrow.gif \
|
||||||
$(noinst_SCRIPTS) \
|
missing-arrow.gif up-arrow.gif next-arrow.gif texi2www.texi \
|
||||||
dir-arrow.gif prev-arrow.gif \
|
archive/texi2www-960103.tgz
|
||||||
missing-arrow.gif up-arrow.gif \
|
|
||||||
next-arrow.gif \
|
|
||||||
texi2www.texi \
|
|
||||||
archive/texi2www-960103.tgz
|
|
||||||
|
|
||||||
PROJECT=texi2www
|
PROJECT = texi2www
|
||||||
|
|
||||||
# TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
# TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
||||||
# info_TEXINFOS = texi2www.texi
|
# info_TEXINFOS = texi2www.texi
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ GENERATED_FILES = overview.texi concepts.texi datatypes.texi init.texi \
|
|||||||
signal.texi part.texi region.texi dpmem.texi io.texi fatal.texi \
|
signal.texi part.texi region.texi dpmem.texi io.texi fatal.texi \
|
||||||
schedule.texi rtmon.texi bsp.texi userext.texi conf.texi mp.texi
|
schedule.texi rtmon.texi bsp.texi userext.texi conf.texi mp.texi
|
||||||
|
|
||||||
COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
||||||
|
$(top_srcdir)/common/cpright.texi
|
||||||
|
|
||||||
info_TEXINFOS = c_user.texi
|
info_TEXINFOS = c_user.texi
|
||||||
c_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
c_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
||||||
@@ -159,4 +160,7 @@ $(srcdir)/mp.texi: mp.t
|
|||||||
|
|
||||||
noinst_DATA = states.gif rtemspie.gif
|
noinst_DATA = states.gif rtemspie.gif
|
||||||
|
|
||||||
EXTRA_DIST = *.t $(PNG_FILES) $(EPS_IMAGES) $(noinst_DATA)
|
EXTRA_DIST = bsp.t concepts.t clock.t datatypes.t conf.t dpmem.t event.t \
|
||||||
|
fatal.t init.t intr.t io.t mp.t msg.t overview.t part.t region.t rtmon.t \
|
||||||
|
sem.t schedule.t signal.t task.t timer.t userext.t $(PNG_FILES) \
|
||||||
|
$(EPS_IMAGES) $(noinst_DATA)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
@c
|
@c
|
||||||
|
|
||||||
@include version.texi
|
@include version.texi
|
||||||
@include ../common/setup.texi
|
@include common/setup.texi
|
||||||
|
|
||||||
@ifset use-ascii
|
@ifset use-ascii
|
||||||
@dircategory RTEMS On-Line Manual
|
@dircategory RTEMS On-Line Manual
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
@subtitle @value{UPDATED}
|
@subtitle @value{UPDATED}
|
||||||
@author On-Line Applications Research Corporation
|
@author On-Line Applications Research Corporation
|
||||||
@page
|
@page
|
||||||
@include ../common/cpright.texi
|
@include common/cpright.texi
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@c This prevents a black box from being printed on "overflow" lines.
|
@c This prevents a black box from being printed on "overflow" lines.
|
||||||
|
|||||||
Reference in New Issue
Block a user