source: rtems/doc/posix1003.1/Makefile.am @ 3bfda69

4.104.114.84.95
Last change on this file since 3bfda69 was 3bfda69, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/26/03 at 15:32:26

2003-11-26 Ralf Corsepius <corsepiu@…>

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