source: rtems/doc/posix1003.1/Makefile.am @ 9847d61d

4.115
Last change on this file since 9847d61d was 9847d61d, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:58:25

Remove CVS-Ids.

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