source: rtems/doc/posix_users/Makefile.am @ 2ba8875

4.104.114.84.95
Last change on this file since 2ba8875 was 2ba8875, checked in by Joel Sherrill <joel.sherrill@…>, on 04/26/00 at 18:02:26

Patch rtemsdoc-4.5.0-rc-0.diff from Ralf Corsepius <corsepiu@…>
which contains the bulk of converting the documentation tree to automake
and GNU conventions. Comments follow:

This is the automake port of rtemsdoc.

To apply:

cvs co rtemsdoc
cd rtemsdoc
sh cvs-rm.sh
patch -p0 < rtemsdoc-4.5.0-rc-0.diff
sh cvs-add.sh

[Attention: cvs-rm.sh and cvs-add.sh directly modify cvs]

Known bugs:
1) src2html is not supported (yet? - Is this supposed to work?)
2) all *.pdf images now are generated on-the-fly, but not yet deleted
during "make distclean"
3) All supplements, including the templated ones, get build and
installed.
4) Building outside of the source tree is completely untested and very
likely does not work.
5) Make [ps|pdf] are not (yet) supported, make [dvi|info] are supported
by automake's default texinfo rules.

Fixing 2, 3 and 5 is almost trivial and needs to be done.
4) is a matter of testing and tool-properties, for now it is simply
untested.

General issues:

  • gif vs jpg vs png. I would recommend to replace all images with pngs to avoid potential copyright issues (gif) or lack in quality (jpg, jpg is good for real world photographs, but extremely poor on artificial images, graphs).
  • pdf images do net get placed correctly in pdf-documents.
  • texinfo: We now use a local copy of texinfo-4.0's texinfo.tex in texinfo/texinfo.tex for generating infos. However pdftex's system-wide texinfo.tex and pdftexinfo.tex are used for generating *.dvi, *.ps, *.pdf.
  • .cvsignore files still missing.
  • I have renamed the supplements filename not to use c_<supplement>, because automake seems to have problems with it.

Notes:

  • Again, I recommend not to put any generated files into CVS. Here, this comprises some *texi, all *.pdf and many *.html pages. Ie. I recommend to run make maintainer-clean before checking in any files.
  • To get building started, this should be sufficient: ./bootstrap ./configure cd tools; make; cd .. make info
  • To make a public tarball: [cvs co ; ./bootstrap] ./configure cd tools; make; cd .. make info [make clean] make dist

=> This generates a rtems-<version>.tar.gz in the toplevel directory.
=> Building the tools only is required after a "cvs co", but not in a

distribution tarball.

  • Property mode set to 100644
File size: 2.3 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
10
11PROJECT=posix_users
12
13include $(top_srcdir)/project.am
14
15COMMON_FILES=$(top_srcdir)/common/cpright.texi
16
17GENERATED_FILES= \
18   cancel.texi clock.texi cond.texi \
19   cspecific.texi device.texi files.texi \
20   io.texi key.texi memorymgmt.texi message.texi mutex.texi procenv.texi \
21   process.texi sched.texi semaphores.texi signal.texi status.texi \
22   systemdb.texi thread.texi timer.texi libc.texi libm.texi
23
24FILES= preface.texi
25
26info_TEXINFOS = posix_users.texi
27posix_users_TEXINFOS = $(FILES) $(GENERATED_FILES)
28
29process.texi: process.t
30         $(BMENU) -p "" \
31            -u "Top" \
32            -n "" $<
33
34procenv.texi: procenv.t
35         $(BMENU) -p "" \
36            -u "Top" \
37            -n "" $<
38
39files.texi: files.t
40         $(BMENU) -p "" \
41            -u "Top" \
42            -n "" $<
43
44thread.texi: thread.t
45         $(BMENU) -p "" \
46            -u "Top" \
47            -n "" $<
48
49signal.texi: signal.t
50         $(BMENU) -p "" \
51            -u "Top" \
52            -n "" $<
53
54mutex.texi: mutex.t
55         $(BMENU) -p "" \
56            -u "Top" \
57            -n "" $<
58
59cond.texi: cond.t
60         $(BMENU) -p "" \
61            -u "Top" \
62            -n "" $<
63
64key.texi: key.t
65         $(BMENU) -p "" \
66            -u "Top" \
67            -n "" $<
68
69clock.texi: clock.t
70         $(BMENU) -p "" \
71            -u "Top" \
72            -n "" $<
73
74timer.texi: timer.t
75         $(BMENU) -p "" \
76            -u "Top" \
77            -n "" $<
78
79sched.texi: sched.t
80         $(BMENU) -p "" \
81            -u "Top" \
82            -n "" $<
83
84io.texi: io.t
85         $(BMENU) -p "" \
86            -u "Top" \
87            -n "" $<
88
89device.texi: device.t
90         $(BMENU) -p "" \
91            -u "Top" \
92            -n "" $<
93
94cspecific.texi: cspecific.t
95         $(BMENU) -p "" \
96            -u "Top" \
97            -n "" $<
98
99semaphores.texi: semaphores.t
100         $(BMENU) -p "" \
101            -u "Top" \
102            -n "" $<
103
104memorymgmt.texi: memorymgmt.t
105         $(BMENU) -p "" \
106            -u "Top" \
107            -n "" $<
108
109message.texi: message.t
110         $(BMENU) -p "" \
111            -u "Top" \
112            -n "" $<
113
114cancel.texi: cancel.t
115         $(BMENU) -p "" \
116            -u "Top" \
117            -n "" $<
118
119systemdb.texi: systemdb.t
120         $(BMENU) -p "" \
121            -u "Top" \
122            -n "" $<
123
124status.texi: status.t
125         $(BMENU) -p "" \
126            -u "Top" \
127            -n "" $<
128
129libc.texi: libc.t
130         $(BMENU) -p "" \
131            -u "Top" \
132            -n "" $<
133
134
135libm.texi: libm.t
136         $(BMENU) -p "" \
137            -u "Top" \
138            -n "" $<
139
140noinst_SCRIPTS = gen_size_report
141EXTRA_DIST = *.t gen_size_report
142
Note: See TracBrowser for help on using the repository browser.