source: rtems/doc/posix_users/Makefile.am @ 81653981

4.104.114.84.95
Last change on this file since 81653981 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: 2.9 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 = posix_users
12EDITION = 1
13
14include $(top_srcdir)/project.am
15include $(top_srcdir)/main.am
16
17GENERATED_FILES = cancel.texi clock.texi cond.texi cspecific.texi \
18    device.texi files.texi io.texi key.texi memorymgmt.texi message.texi \
19    mutex.texi procenv.texi process.texi sched.texi semaphores.texi \
20    signal.texi status.texi systemdb.texi thread.texi timer.texi libc.texi \
21    libm.texi
22
23COMMON_FILES = $(top_srcdir)/common/setup.texi \
24    $(top_srcdir)/common/cpright.texi
25
26FILES = preface.texi
27info_TEXINFOS = posix_users.texi
28posix_users_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
29
30$(srcdir)/process.texi: process.t
31         $(BMENU2) -p "" \
32            -u "Top" \
33            -n "" < $< > $@
34
35$(srcdir)/procenv.texi: procenv.t
36         $(BMENU2) -p "" \
37            -u "Top" \
38            -n "" < $< > $@
39
40$(srcdir)/files.texi: files.t
41         $(BMENU2) -p "" \
42            -u "Top" \
43            -n "" < $< > $@
44
45$(srcdir)/thread.texi: thread.t
46         $(BMENU2) -p "" \
47            -u "Top" \
48            -n "" < $< > $@
49
50$(srcdir)/signal.texi: signal.t
51         $(BMENU2) -p "" \
52            -u "Top" \
53            -n "" < $< > $@
54
55$(srcdir)/mutex.texi: mutex.t
56         $(BMENU2) -p "" \
57            -u "Top" \
58            -n "" < $< > $@
59
60$(srcdir)/cond.texi: cond.t
61         $(BMENU2) -p "" \
62            -u "Top" \
63            -n "" < $< > $@
64
65$(srcdir)/key.texi: key.t
66         $(BMENU2) -p "" \
67            -u "Top" \
68            -n "" < $< > $@
69
70$(srcdir)/clock.texi: clock.t
71         $(BMENU2) -p "" \
72            -u "Top" \
73            -n "" < $< > $@
74
75$(srcdir)/timer.texi: timer.t
76         $(BMENU2) -p "" \
77            -u "Top" \
78            -n "" < $< > $@
79
80$(srcdir)/sched.texi: sched.t
81         $(BMENU2) -p "" \
82            -u "Top" \
83            -n "" < $< > $@
84
85$(srcdir)/io.texi: io.t
86         $(BMENU2) -p "" \
87            -u "Top" \
88            -n "" < $< > $@
89
90$(srcdir)/device.texi: device.t
91         $(BMENU2) -p "" \
92            -u "Top" \
93            -n "" < $< > $@
94
95$(srcdir)/cspecific.texi: cspecific.t
96         $(BMENU2) -p "" \
97            -u "Top" \
98            -n "" < $< > $@
99
100$(srcdir)/semaphores.texi: semaphores.t
101         $(BMENU2) -p "" \
102            -u "Top" \
103            -n "" < $< > $@
104
105$(srcdir)/memorymgmt.texi: memorymgmt.t
106         $(BMENU2) -p "" \
107            -u "Top" \
108            -n "" < $< > $@
109
110$(srcdir)/message.texi: message.t
111         $(BMENU2) -p "" \
112            -u "Top" \
113            -n "" < $< > $@
114
115$(srcdir)/cancel.texi: cancel.t
116         $(BMENU2) -p "" \
117            -u "Top" \
118            -n "" < $< > $@
119
120$(srcdir)/systemdb.texi: systemdb.t
121         $(BMENU2) -p "" \
122            -u "Top" \
123            -n "" < $< > $@
124
125$(srcdir)/status.texi: status.t
126         $(BMENU2) -p "" \
127            -u "Top" \
128            -n "" < $< > $@
129
130$(srcdir)/libc.texi: libc.t
131         $(BMENU2) -p "" \
132            -u "Top" \
133            -n "" < $< > $@
134
135$(srcdir)/libm.texi: libm.t
136         $(BMENU2) -p "" \
137            -u "Top" \
138            -n "" < $< > $@
139
140noinst_SCRIPTS = gen_size_report
141EXTRA_DIST = cancel.t clock.t cond.t cspecific.t device.t files.t io.t key.t \
142    libc.t libm.t memorymgmt.t message.t mutex.t procenv.t process.t sched.t \
143    semaphores.t signal.t status.t systemdb.t thread.t timer.t \
144    gen_size_report
145
Note: See TracBrowser for help on using the repository browser.