source: rtems/doc/itron3.0/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.1 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 = itron
12EDITION = 1
13
14include $(top_srcdir)/project.am
15include $(top_srcdir)/main.am
16
17COMMON_FILES = $(top_srcdir)/common/setup.texi
18
19GENERATED_FILES = status.texi task.texi tasksync.texi semaphore.texi \
20    eventflags.texi mailbox.texi msgbuffer.texi rendezvous.texi \
21    interrupt.texi memorypool.texi fixedblock.texi time.texi config.texi \
22    network.texi
23
24FILES = preface.texi
25
26info_TEXINFOS = itron.texi
27itron_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
28
29$(srcdir)/status.texi: status.t
30        $(BMENU2) -p "" \
31            -u "Top" \
32            -n "" < $< > $@
33
34$(srcdir)/task.texi: task.t
35        $(BMENU2) -p "" \
36            -u "Top" \
37            -n "" < $< > $@
38
39$(srcdir)/tasksync.texi: tasksync.t
40        $(BMENU2) -p "" \
41            -u "Top" \
42            -n "" < $< > $@
43
44$(srcdir)/semaphore.texi: semaphore.t
45        $(BMENU2) -p "" \
46            -u "Top" \
47            -n "" < $< > $@
48
49$(srcdir)/eventflags.texi: eventflags.t
50        $(BMENU2) -p "" \
51            -u "Top" \
52            -n "" < $< > $@
53
54$(srcdir)/mailbox.texi: mailbox.t
55        $(BMENU2) -p "" \
56            -u "Top" \
57            -n "" < $< > $@
58
59$(srcdir)/msgbuffer.texi: msgbuffer.t
60        $(BMENU2) -p "" \
61            -u "Top" \
62            -n "" < $< > $@
63
64$(srcdir)/rendezvous.texi: rendezvous.t
65        $(BMENU2) -p "" \
66            -u "Top" \
67            -n "" < $< > $@
68
69$(srcdir)/interrupt.texi: interrupt.t
70        $(BMENU2) -p "" \
71            -u "Top" \
72            -n "" < $< > $@
73
74$(srcdir)/memorypool.texi: memorypool.t
75        $(BMENU2) -p "" \
76            -u "Top" \
77            -n "" < $< > $@
78
79$(srcdir)/fixedblock.texi: fixedblock.t
80        $(BMENU2) -p "" \
81            -u "Top" \
82            -n "" < $< > $@
83
84$(srcdir)/time.texi: time.t
85        $(BMENU2) -p "" \
86            -u "Top" \
87            -n "" < $< > $@
88
89$(srcdir)/config.texi: config.t
90        $(BMENU2) -p "" \
91            -u "Top" \
92            -n "" < $< > $@
93
94$(srcdir)/network.texi: network.t
95        $(BMENU2) -p "" \
96            -u "Top" \
97            -n "" < $< > $@
98
99noinst_SCRIPTS = gen_all gen_section gen_status_shell
100
101EXTRA_DIST = config.t eventflags.t fixedblock.t interrupt.t mailbox.t \
102    memorypool.t msgbuffer.t network.t rendezvous.t semaphore.t status.t \
103    task.t tasksync.t time.t $(noinst_SCRIPTS)
Note: See TracBrowser for help on using the repository browser.