4.104.114.84.95
Last change
on this file since febb47e was
febb47e,
checked in by Joel Sherrill <joel.sherrill@…>, on 11/19/98 at 16:59:38
|
Changed version string.
Added much new stuff to the POSIX User's Guide.
New chapters stuff shrunk.
|
-
Property mode set to
100755
|
File size:
1.4 KB
|
Line | |
---|
1 | #! /bin/sh |
---|
2 | # |
---|
3 | # $Id$ |
---|
4 | # |
---|
5 | |
---|
6 | basedir=$1 |
---|
7 | shift |
---|
8 | |
---|
9 | # classes of documents |
---|
10 | supplements="supplements/hppa1_1 supplements/i386 \ |
---|
11 | supplements/i960 supplements/m68k supplements/sparc supplements/powerpc" |
---|
12 | # gnu_tools="gnu_tools/newlib-1.8.0 gnu_tools/egcs-1.0.2" |
---|
13 | |
---|
14 | # Division by access level |
---|
15 | public_docs="user develenv networking posix_users started started_ada" |
---|
16 | support_docs="${supplements} bsp_howto" |
---|
17 | partners_docs="posix1003.1 posix1003.1h" |
---|
18 | oar_manuals="ada_user hwapi tools/texi2www \ |
---|
19 | browseable_rtems new_chapters" |
---|
20 | |
---|
21 | # relnotes is obsolete |
---|
22 | # posix_users manual left out until finished |
---|
23 | # ada_user manual left out until bindings released |
---|
24 | |
---|
25 | if [ x${MANUAL_SET} = x ] ; then |
---|
26 | MANUAL_SET=public |
---|
27 | fi |
---|
28 | |
---|
29 | case ${MANUAL_SET} in |
---|
30 | public) |
---|
31 | manuals="$public_docs" |
---|
32 | ;; |
---|
33 | support) |
---|
34 | manuals="$public_docs $support_docs" |
---|
35 | ;; |
---|
36 | partners) |
---|
37 | manuals="$public_docs $support_docs $partners_docs" |
---|
38 | ;; |
---|
39 | internal) |
---|
40 | manuals="$public_docs $support_docs $partners_docs $oar_manuals" |
---|
41 | ;; |
---|
42 | *) |
---|
43 | echo "ERROR: Unknown manual set ${MANUAL_SET}" |
---|
44 | exit 1 |
---|
45 | ;; |
---|
46 | esac |
---|
47 | |
---|
48 | for action in $* |
---|
49 | do |
---|
50 | for manual in $manuals |
---|
51 | do |
---|
52 | if [ x${TEST} = xyes ] ; then |
---|
53 | echo "TEST *** make $action on ${basedir}/${manual} ***" |
---|
54 | else |
---|
55 | echo |
---|
56 | echo "*** make $action on ${basedir}/${manual} ***" |
---|
57 | echo |
---|
58 | cd ${basedir}/${manual} |
---|
59 | gmake $action || exit $? |
---|
60 | fi |
---|
61 | done |
---|
62 | done |
---|
63 | |
---|
64 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.