source: rtems/doc/rgdb_specs/Makefile.am @ fc76a6aa

4.104.114.84.95
Last change on this file since fc76a6aa was fc76a6aa, checked in by Joel Sherrill <joel.sherrill@…>, on 06/01/00 at 15:29:01

Patch rtemsdoc-4.5.0-rc-8.diff from Ralf Corsepius <corsepiu@…>.
Ralf's comments follow:

Changes:

  • Enhanced versioning:
    • Addition of automake's version.texi support
    • Replacement of rtemsdoc's former versioning support by automake's versioning support (Abandoning RTEMS-UPDATE-* etc.)
    • Abandoning setup.texi.in
    • Add EDITION to each documents Makefile.am
    • version.texi support in project.am
    • Addition of maintainer mode (currently only used to prevent incorrectly updating timestamps when users touch automake's version.texi timestamp files (stamp-vti)).
  • Fixing info dir support
    • Use texinfo's @dircategory and @direntry instead of infos *-DIR-ENTRY
    • $(infodir)/dir is now correctly set up
  • Avoid using temporary files
    • Pipe texts through REPLACE2 into BMENU2 instead of using temporary files.
    • Abandon using bmenu in favor of bmenu2 (bmenu could be removed now)
  • Prepare Makefile.ams for building in a separate buildtree
    • prefix files with $(srcdir) in Makefile.am for files which must be generated inside of the source tree

Notes:

  • rtemsdoc can not yet be build in a separate source-tree, but we are very close to it.
  • You as the maintainer of this package now should always use --enable-maintainer-mode to configure rtemsdoc.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1999.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9AUTOMAKE_OPTIONS = foreign 1.4
10
11PROJECT = rgdb_specs
12EDITION = 1
13
14include $(top_srcdir)/project.am
15
16GENERATED_FILES = intro.texi revision.texi objectives.texi gdbinternals.texi \
17    interfacing.texi comm.texi daemon.texi conclusion.texi
18COMMON_FILES = $(top_srcdir)/common/setup.texi $(top_srcdir)/common/cpright.texi
19
20FILES =
21
22info_TEXINFOS = rgdb_specs.texi
23rgdb_specs_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
24
25JPEG_FILES = layers.jpg process.jpg seqinit.jpg seqbreak.jpg seqdetach.jpg
26
27PDF_IMAGES = layers.pdf process.pdf seqdetach.pdf seqbreak.pdf seqinit.pdf
28
29if USE_HTML
30html_project_DATA += $(JPEG_FILES)
31endif
32
33#
34#  Process Automatically Generated Files
35#
36
37$(srcdir)/intro.texi: intro.t
38        $(BMENU2) -c -p "Top" \
39            -u "Top" \
40            -n "Document Revision History" < $< > $@
41
42$(srcdir)/revision.texi: revision.t
43        $(BMENU2) -c -p "Introduction" \
44            -u "Top" \
45            -n "Objectives" < $< > $@
46
47$(srcdir)/objectives.texi: objectives.t
48        $(BMENU2) -c -p "Document Revision History" \
49            -u "Top" \
50            -n "A Rapid Tour of GDB Internals" < $< > $@
51
52$(srcdir)/gdbinternals.texi: gdbinternals.t
53        $(BMENU2) -c -p "Implied Restrictions" \
54            -u "Top" \
55            -n "Interfacing GDB with RTEMS as a Target" < $< > $@
56
57$(srcdir)/interfacing.texi: interfacing.t
58        $(BMENU2) -c -p "A Rapid Tour of GDB Internals" \
59            -u "Top" \
60            -n "Communication with GDB" < $< > $@
61
62$(srcdir)/comm.texi: comm.t
63        $(BMENU2) -c -p "Interfacing GDB with RTEMS as a Target" \
64            -u "Top" \
65            -n "RTEMS Debugger Server Daemon" < $< > $@
66
67$(srcdir)/daemon.texi: daemon.t
68        $(BMENU2) -c -p "Communication with GDB" \
69            -u "Top" \
70            -n "Conclusion" < $< > $@
71
72$(srcdir)/conclusion.texi: conclusion.t
73        $(BMENU2) -c -p "Output of a Debug Session with the Prototype" \
74            -u "Top" \
75            -n "" < $< > $@
76
77noinst_DATA = layers.eps process.eps seqdetach.eps seqbreak.eps seqinit.eps
78
79EXTRA_DIST = *.t $(noinst_DATA) $(JPEG_FILES)
Note: See TracBrowser for help on using the repository browser.