source: rtems/doc/posix1003.1/Makefile.am @ 205a21e

4.115
Last change on this file since 205a21e was 6c5ecae3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 13:10:10

2003-12-12 Ralf Corsepius <corsepiu@…>

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