source: rtems/doc/posix1003.1/Makefile.am @ 3664547d

4.104.114.84.95
Last change on this file since 3664547d was 3ebc6dc, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/24/03 at 11:24:58

2003-01-24 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Put GENERATED_FILES into $builddir.
  • Property mode set to 100644
File size: 3.4 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9
10PROJECT = posix1003_1
11EDITION = 1
12
13include $(top_srcdir)/project.am
14include $(top_srcdir)/main.am
15
16GENERATED_FILES = ch01.texi ch02.texi ch03.texi ch04.texi ch05.texi \
17    ch06.texi ch07.texi ch08.texi ch09.texi ch10.texi ch11.texi ch12.texi \
18    ch13.texi ch14.texi ch15.texi ch16.texi ch17.texi ch18.texi ch19.texi
19
20COMMON_FILES = $(top_srcdir)/common/setup.texi \
21    $(top_srcdir)/common/cpright.texi
22
23FILES = preface.texi
24
25info_TEXINFOS = posix1003_1.texi
26posix1003_1_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
27
28ch01.texi: ch01.t
29        $(BMENU2) -c -p "Preface" \
30            -u "Top" \
31            -n "Terminology and General Requirements" < $< > $@
32
33ch02.texi: ch02.t
34        $(BMENU2) -c -p "Conformance" \
35            -u "Top" \
36            -n "Process Primitives" < $< > $@
37
38ch03.texi: ch03.t
39        $(BMENU2) -c -p "Execution-Time Symbolic Constants for Portability Specifications" \
40            -u "Top" \
41            -n "Process Environment" < $< > $@
42
43ch04.texi: ch04.t
44        $(BMENU2) -c -p "Delay Process Execution" \
45            -u "Top" \
46            -n "Files and Directories" < $< > $@
47
48ch05.texi: ch05.t
49        $(BMENU2) -c -p "Get Configurable System Variables" \
50            -u "Top" \
51            -n "Input and Output Primitives" < $< > $@
52
53ch06.texi: ch06.t
54        $(BMENU2) -c -p "Get Configurable Pathname Variables" \
55            -u "Top" \
56            -n "Device- and Class-Specific Functions" < $< > $@
57
58ch07.texi: ch07.t
59        $(BMENU2) -c -p " Asynchronous File Synchronization" \
60            -u "Top" \
61            -n "Language-Specific Services for the C Programming Language" < $< > $@
62
63ch08.texi: ch08.t
64        $(BMENU2) -c -p "Set Foreground Process Group ID" \
65            -u "Top" \
66            -n "System Databases" < $< > $@
67
68ch09.texi: ch09.t
69        $(BMENU2) -c -p "Pseudo-Random Sequence Generation Functions" \
70            -u "Top" \
71            -n "Data Interchange Format" < $< > $@
72
73ch10.texi: ch10.t
74        $(BMENU2) -c -p "User Database Access" \
75            -u "Top" \
76            -n "Synchronization" < $< > $@
77
78ch11.texi: ch11.t
79        $(BMENU2) -c -p "Multiple Volumes" \
80            -u "Top" \
81            -n "Memory Management" < $< > $@
82
83ch12.texi: ch12.t
84        $(BMENU2) -c -p "Waiting on a Condition" \
85            -u "Top" \
86            -n "Execution Scheduling" < $< > $@
87
88ch13.texi: ch13.t
89        $(BMENU2) -c -p "Remove a Shared Memory Object" \
90            -u "Top" \
91            -n "Clocks and Timers" < $< > $@
92
93ch14.texi: ch14.t
94        $(BMENU2) -c -p "Change the Priority Ceiling of a Mutex" \
95            -u "Top" \
96            -n "Message Passing" < $< > $@
97
98ch15.texi: ch15.t
99        $(BMENU2) -c -p "High Resolution Sleep" \
100            -u "Top" \
101            -n "Thread Management" < $< > $@
102
103ch16.texi: ch16.t
104        $(BMENU2) -c -p "Get Message Queue Attributes" \
105            -u "Top" \
106            -n "Thread-Specific Data" < $< > $@
107
108ch17.texi: ch17.t
109        $(BMENU2) -c -p "Dynamic Package Initialization" \
110            -u "Top" \
111            -n "Thread Cancellation" < $< > $@
112
113ch18.texi: ch18.t
114        $(BMENU2) -c -p "Thread-Specific Data Key Deletion" \
115            -u "Top" \
116            -n "Compliance Summary" < $< > $@
117
118ch19.texi: ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
119    ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t
120        $(srcdir)/summarize $^ | \
121        $(BMENU2) -c -p "List of Cancellation Points" \
122            -u "Top" \
123            -n "Command and Variable Index" > $@
124
125noinst_SCRIPTS = summarize
126
127EXTRA_DIST = ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t ch09.t \
128    ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t \
129    compliance_list summarize
Note: See TracBrowser for help on using the repository browser.