source: rtems/doc/posix1003.1/Makefile.am @ 5f76c90

4.104.114.84.95
Last change on this file since 5f76c90 was 81653981, checked in by Joel Sherrill <joel.sherrill@…>, on 01/18/02 at 15:10:35

2002-01-18 Ralf Corsepius <corsepiu@…>

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